body {
  background-color: rgb(205, 130, 205);
}

#facecontainer {
  align-items: center;
  justify-content: center;
  display: flex;
  width: 100%;

}

h1 {
  text-align: center;
  font-size: 1.25em;
}
.textbox {
  display: flex;
  aspect-ratio: 1.5 / 1;
  align-items: center;
  justify-content: center;
  text-align: center;
  width: 100%;
  height: auto;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  font-size: 1em;
  color: white;
  padding: 5%;
  box-sizing: border-box;
  font-weight: bold;
}

#icons {
  display: flex;
  width: 100%;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  gap: 10%;
}

#leftcol {
  width: 40%;
  display: flex;
  flex-direction: column;
  align-items:flex-end;
  transition: 0.3s ease;

}

.correct {
  filter: drop-shadow(0 0 1em rgba(0, 255, 17, 0.8));
}

.incorrect {
  filter: drop-shadow(0 0 1em rgba(255, 0, 0, 0.8));
}

.lbub {
  width: 40%;
  margin-left: 60%;
  
}

.rbub {
  width: 40%;
  margin-right: 60%;
}

#rightcol {
  width: 40%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transition: 0.3s ease;
}

#face {
  width: 40%;
  height:auto;
}

.end-message {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}