.greyscale{
    -webkit-filter: grayscale(100%);
    -moz-filter: grayscale(100%);
    -ms-filter: grayscale(100%);
    -o-filter: grayscale(100%);
    filter: grayscale(100%);
}

.text-show {
    color: black;
    opacity: 1;
    transition: all 1s ease;
}
  
.text-fade {
    color: black;
    opacity: 0;
    transition: all 1s ease;
}

/* https://wdexplorer.com/20-examples-beautiful-css-typography-design/ */
#smileQuestionSpan {
    color: #ffffff;
    font-family: omnium-tagline, sans-serif;
    font-style: normal;
    font-weight: 300;
    font-size: 2em;
    text-shadow: 1px 2px 2px rgb(153, 101, 153);
    text-align: center;
    text-wrap: balance;
}

#overlaySpan {
  color: #ffffff;
    font-family: omnium-tagline, sans-serif;
    font-style: normal;
    font-weight: 300;
    font-size: 1.5em;
    text-shadow: 1px 2px 2px rgb(153, 101, 153);
    text-align: center;
    text-wrap: balance;
}

#smileQuestionSpeechInput {
  font-family: "locator-web", sans-serif;
  font-weight: 400;
  font-style: normal;    
  font-size: 1.5em;
  color:#3b3b3b;
  padding: 3px;
  background:#d4d4d498;
  border-radius: 10px;
  backdrop-filter: blur(10px); 
}


#smileQuestionAnswersFieldHeader, #lastQuestionAnswerFieldHeader {
    color: rgb(20, 20, 20);
    background-color: rgba(241, 241, 241, 0.751);
    font-family: "locator-web", sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 20px;
    font-weight: 300;
    border-radius: 10px;
    padding: 3px;
    margin: 5px;

    
}

#smileQuestionAnswersField, #nextOverlaySpan {
    color: rgb(255, 255, 255);
    font-family: "locator-web", sans-serif;
    background-color: rgba(20, 20, 20, 0.418);
    font-weight: 400;
    font-style: normal;
    font-size: 1.5em;
    font-weight: 300;
    border-radius: 10px;
    margin: 5px;
    /* text-shadow: 2px 2px 2px rgba(114, 135, 111, 0.627); */
    padding: 3px;
}

#lastQuestionAnswerField {
  color: rgb(238, 0, 255);
  font-family: "locator-web", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 1.5em;
  font-weight: 300;
  text-shadow: 3px 3px 20px rgb(255, 255, 255);
  background:rgba(240, 240, 240, 0.187);
  padding: 3px;
  backdrop-filter: blur(10px); 
  border-radius: 10px;

}


/* https://getcssscan.com/css-buttons-examples */
/* #addCommentButton, #resetButton {
  align-items: center;
  background-color: #FFFFFF;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: .25rem;
  box-shadow: rgba(0, 0, 0, 0.02) 0 1px 3px 0;
  box-sizing: border-box;
  color: rgba(0, 0, 0, 0.85);
  cursor: pointer;
  display: inline-flex;
  font-family: 'Congenial', sans-serif;
  font-size: 16px;
  font-weight: 600;
  justify-content: center;
  line-height: 1.25;
  margin: 0;
  min-height: 3rem;
  padding: calc(.875rem - 1px) calc(1.5rem - 1px);
  position: relative;
  text-decoration: none;
  transition: all 250ms;
  user-select: none;
  -webkit-user-select: none;
  touch-action: manipulation;
  vertical-align: baseline;
  width: auto;
} */

/* #addCommentButton:hover, #resetButton:hover
#addCommentButton:focus, #resetButton:focus {
  border-color: rgba(0, 0, 0, 0.15);
  box-shadow: rgba(0, 0, 0, 0.1) 0 4px 12px;
  color: rgba(0, 0, 0, 0.65);
}

#addCommentButton:hover, #resetButton:hover {
  transform: translateY(-1px);
}

#addCommentButton:active, #resetButton:active {
  background-color: #F0F0F1;
  border-color: rgba(0, 0, 0, 0.15);
  box-shadow: rgba(0, 0, 0, 0.06) 0 2px 4px;
  color: rgba(0, 0, 0, 0.65);
  transform: translateY(0);
} */


 text {
  font-size: large;
  position: absolute;
  width: 100%;
  height: 100%;
  
};

container {
  background-image: url('bg-test-1.png');
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-size: cover;
  background-position: relative;
  margin:0;
  display:flex; 

  justify-content: center;

  align-items: center;
}

.centered {
  position: absolute;
  top: 50%;
  left: 50%;
}

.button-center {
  position: absolute;
  top: 95%;
  left: 55%;
  font-size: 2em;
  border-radius: 8px;
  border-color: #afafaf15;
  font-family:'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
  color: #535353;
}

h1 {
  font-size: 10em;
  font-family:'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
  color: #535353;
}


#background-video {
  position: fixed;
  top: 0;
  left: 0;
  min-width: 100%;
  min-height: 100%;
  z-index: -1;
}


/* center on every device */
#smileQuestionAnswersFieldHeader,
#smileQuestionAnswersField,
#lastQuestionAnswerFieldHeader,
#lastQuestionAnswerField {
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Hide the white border plus scrollbars
body {
  margin: 0;
  padding: 0;
  overflow: hidden; 
  width: 100%; 
  height: 100%;
}


