/* setup styles */
article, aside, details, figcaption, figure, footer, header, hgroup, nav, section, summary {
  display: block; }

audio, canvas, video {
  display: inline-block; }

audio:not([controls]) {
  display: none;
  height: 0; }

[hidden] {
  display: none; }

html {
  font-family: sans-serif;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%; }

a:focus {
  outline: thin dotted; }

a:active, a:hover {
  outline: 0; }

h1 {
  font-size: 2em; }

abbr[title] {
  border-bottom: 1px dotted; }

b, strong {
  font-weight: 700; }

dfn {
  font-style: italic; }

mark {
  background: #ff0;
  color: #000; }

code, kbd, pre, samp {
  font-family: monospace, serif;
  font-size: 1em; }

pre {
  white-space: pre-wrap;
  word-wrap: break-word; }

q {
  quotes: \201C \201D \2018 \2019; }

small {
  font-size: 80%; }

sub, sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline; }

sup {
  top: -.5em; }

sub {
  bottom: -.25em; }

img {
  border: 0; }

svg:not(:root) {
  overflow: hidden; }

fieldset {
  border: 1px solid silver;
  margin: 0 2px;
  padding: .35em .625em .75em; }

button, input, select, textarea {
  font-family: inherit;
  font-size: 100%;
  margin: 0; }

button, input {
  line-height: normal; }

button, html input[type=button], input[type=reset], input[type=submit] {
  -webkit-appearance: button;
  cursor: pointer; }

button[disabled], input[disabled] {
  cursor: default; }

input[type=checkbox], input[type=radio] {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  padding: 0; }

input[type=search] {
  -webkit-appearance: textfield;
  -moz-box-sizing: content-box;
  -webkit-box-sizing: content-box;
  box-sizing: content-box; }

input[type=search]::-webkit-search-cancel-button, input[type=search]::-webkit-search-decoration {
  -webkit-appearance: none; }

textarea {
  overflow: auto;
  vertical-align: top; }

table {
  border-collapse: collapse;
  border-spacing: 0; }

body, figure {
  margin: 0; }

legend, button::-moz-focus-inner, input::-moz-focus-inner {
  border: 0;
  padding: 0; }

.clearfix:after {
  visibility: hidden;
  display: block;
  font-size: 0;
  content: '';
  clear: both;
  height: 0; }

* {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box; }

/* global styles */
body {
  margin: 0;
  min-height: 100vh;
  font-family: 'Cabin', sans-serif;
  text-align: center;
  background: -webkit-radial-gradient(lightskyblue, darkorchid);
  background: -o-radial-gradient(lightskyblue, darkorchid);
  background: radial-gradient(lightskyblue, darkorchid);
  color: #1A1423;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between; }

main {
  width: 100%;
  min-height: calc(100vh - 100px);
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center; }

section {
  width: 100%; }

h1 {
  font-family: 'Lobster Two', cursive;
  font-size: 7vw;
  text-shadow: -3px -3px 10px white, 4px 4px 10px #B2ABBF; }

#keywords, #global {
  width: 90%;
  height: calc(50vh - 20px);
  max-height: 600px;
  max-width: 600px;
  margin: 0;
  -webkit-align-self: center;
  -ms-flex-item-align: center;
  align-self: center; }
  #keywords span, #global span {
    font-family: 'Cabin', sans-serif;
    letter-spacing: .1rem; }

#keywords span:hover {
  cursor: pointer; }

.global {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center; }

.hidden {
  visibility: hidden;
  position: absolute;
  left: -100%; }

ul.emotions {
  width: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: space-around;
  -ms-flex-pack: distribute;
  justify-content: space-around;
  list-style-type: none;
  padding: 0;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap; }

li.emotion, .btn {
  padding: 2.3% 5%;
  border-radius: 50px;
  background: #1A1423;
  color: white;
  font-size: 2vw;
  letter-spacing: .1rem;
  border: 2px solid white; }
  li.emotion:hover, .btn:hover {
    background: white;
    color: #1A1423;
    -webkit-transition: 1s;
    -o-transition: 1s;
    transition: 1s; }

li.sad {
  padding: 2.3% 6.5%; }

li.angry {
  padding: 2.3% 5.5%; }

li.happy {
  padding: 2.3% 5.1%; }

i.bigFa.fa {
  font-size: 25vw; }

a {
  color: #1A1423; }

.jqcloud-word.w1, .jqcloud-word.w2 {
  font-size: 1.5rem; }

iframe {
  width: 100%;
  margin-top: 0px;
  padding: 20px 0; }

#iframe {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center; }

.icon {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center; }

.buttons {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center; }

button.btn {
  margin: 0px 20px 0px 20px;
  padding: 1.3% 2%;
  width: 50%;
  max-width: 300px; }
  button.btn.restart {
    margin: 0; }

.submit {
  margin-left: 12px;
  max-width: 15%;
  background: white;
  border: 2px solid white;
  color: #1A1423;
  border-radius: 0;
  padding: 1.3% 2%; }
  .submit:hover {
    background: #1A1423;
    color: white;
    -webkit-transition: 1s;
    -o-transition: 1s;
    transition: 1s; }

label {
  margin: 20px 0px 10px 0px; }

input {
  padding: 1.3%;
  letter-spacing: .1rem;
  margin-bottom: 20px;
  max-width: 90%;
  -webkit-align-self: center;
  -ms-flex-item-align: center;
  align-self: center; }

#textInput {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin-bottom: 5%; }

p {
  margin: 5%; }

label {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  border: 0;
  padding: 0;
  white-space: nowrap;
  -webkit-clip-path: inset(100%);
  clip-path: inset(100%);
  clip: rect(0 0 0);
  overflow: hidden; }

footer {
  color: #1A1423; }
  footer a {
    color: darkColor; }

/* media queries */
@media (max-width: 685px) {
  h1 {
    font-size: 50px;
    margin-top: 10%; }
  li.emotion, .btn {
    font-size: 18px; } }

@media (max-height: 425px) {
  i.fa.fa-meh-o {
    display: none; } }
