@font-face {
  font-family: Sail;
  src: url(./assets/Sail-Regular.ttf);
}
.main {
  display: flex;
  align-items: center;
  justify-content: center;
}
body {
  margin: 0px;
}
.MWrapper {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height:100vh; 
  width: 80%;
  z-index: 1;
  opacity: 0;
  animation: Fadein 1s forwards;
  animation-delay: 3s;
  
}

#Aash {
  display: flex;
  position: absolute;
  top:0;
  bottom:0;
  left:0;
  right:0;
  background: black;
  align-items: center;
  justify-content: center;
}

/* Question */
.question-logo {
  position: absolute;
  top: 50px;
  left: 100px;
  height: 5vh;
  font-family: Sail;
  font-style: normal;
  font-weight: normal;
  font-size: 72px;
  line-height: 83px;
  display: flex;
  align-items: center;
  text-align: center;

  color: white;
}

/* Should I go out today? */

.question-list {
  position: absolute;
  top:150px;
  left:100px;
  max-width: 300px;
  max-height: 500px;
  min-width: 300px;
  min-height: 500px;

  font-family: Roboto;
  font-style: normal;
  font-weight: normal;
  font-size: 30px;
  line-height: 35px;
  text-align: center;

  color: white;
}

.question-list p {
  opacity: 50%;
}

.question-list p:first-child {
  opacity: 100%;
}




/* Answer */
.answer-logo {
  position: absolute;
  top: 50px;
  right: 100px;
  height: 5vh;

  font-family: Sail;
  font-style: normal;
  font-weight: normal;
  font-size: 72px;
  line-height: 83px;
  display: flex;
  align-items: center;
  text-align: center;

  color: white;
}

/* Better not (News: https://www.nytimes.com/2020/09/11/climate/california-smoke-wildfires.html) */


.answer-list {
  position: absolute;
  top:150px;
  right:100px;
  max-width: 300px;
  max-height: 500px;
  min-width: 300px;
  min-height: 500px;

  font-family: Roboto;
  font-style: normal;
  font-weight: normal;
  font-size: 30px;
  line-height: 35px;
  text-align: center;

  color: white;
}

.answer-list p {
  opacity: 50%;
}

.answer-list p:first-child {
  opacity: 100%;
}

/* Mirror */

.mirror, .mirror-shattered {
  position: absolute;
  width: 100%;
  height: 700px;
  top: 5vh;
  background-size: contain;
  display: flex;
  justify-content: center;
  overflow: hidden;
  padding-top: 30px;
}

/*
.mirror-shattered {
  background: url("./assets/mirror-cracked.gif") no-repeat center center;
  background-size: contain;
}
*/

.video-wrapper {
  height: 80%;
  width: 36%;
  flex-shrink: 0;
  clip-path: ellipse(29% 33% at 48% 53%);
}

.mirror:after {
  content: '';
  position: absolute;
  background: url("./assets/mirror.png") no-repeat center center;
	background-size: contain;
  border-radius: 5px;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}

/* Text Dialog box */

.dialog-box {
  position: absolute;
  width: 40vw;
  height: 100px;
  bottom: 15vh;
}

/* Mic Button */


.mic-button {
  position: absolute;
  width: 80px;
  height: 80px;
  bottom: 7vh;
  filter: drop-shadow(0px 4px 4px rgba(0, 0, 0, 0.25));
  background: url(./assets/camera.png) center no-repeat;
  border-radius: 50%;
}

.mic-button:hover {
  filter: drop-shadow(0px 8px 8px rgba(0, 0, 0, 0.25));
}

#input {
  width: 100%;
  height: 50%;
  border-radius: 2em;
  font-size: 2em;
  text-align: center;
  background: rgba(255, 255, 255, .5);
}

#input:focus {
  outline: none;
}


/* pbar */
.pbar {
  width: 200px;
  margin-top: auto;
  margin-right: auto;
  height: 118px;
}

/* Rectangle 8 */

.popup {
  position: absolute;
  width: 40vw;
  height: 394px;
  left:30vw;
  top: 271px;
  background: #FFF1E6;
  border-radius: 30px;
  text-align: center;
}

/* “Psykic Pookie” Would Like Access to Your Camera and Mic. */


.popup-text {
  font-family: Roboto;
  font-style: normal;
  font-weight: bold;
  font-size: 28px;
  line-height: 33px;
  color: #000000;
  padding: 1em;
}

.btn-continue {
  margin: auto;
  width: 20%;
  padding: 1em;
  background: #C4C4C4;
  border-radius: 30px;
  filter: drop-shadow(0px 4px 4px rgba(0, 0, 0, 0.25));
  background: url(./assets/button-bg.png);
}

.btn-continue:hover {
  filter: drop-shadow(0px 8px 8px rgba(0, 0, 0, 0.25));
}

.source-select {
  padding: 2em;
}

@keyframes Fadein {
  0%   {opacity: 0;}
  100% {opacity: 1;}
}
