#announce-box {
  font-family: 'Tangerine', cursive;
  font-size: 48px;
  margin-bottom: 15px;
  min-height: 57px;
  opacity: 0;
  transition: all 0.25s ease 0.25s;
  visibility: hidden;
}

#announce-box.correct {
  opacity: 1;
  transition: all 0.25s ease 0s;
  visibility: visible;
}

#msg-box {
  align-items: center;
  color: indianred;
  color: lightcoral;
  display: flex;
  font-size: 48px;
  font-variant: small-caps;
  justify-content: center;
  min-height: 57px;
  padding-bottom: 15px;
  text-transform: lowercase;
}

#msg-box:empty::before {
  color: cornflowerblue;
  content: 'Enter your guess.';
  display: block;
  font-family: 'Tangerine', cursive;
  font-style: italic;
  font-variant: none;
  text-transform: none;
}

#announce-box.correct + #msg-box {
  color: cornflowerblue;
}

#sample {
  display: none;
}

body {
  align-items: center;
  color: cornflowerblue;
  display: flex;
  flex-direction: column;
  height: 100%;
  justify-content: center;
  margin: 0px;
  padding: 0px;
  width: 100%;
}

body.pristine {
  cursor: pointer;
}

body.pristine .intro {
  cursor: pointer;
  display: initial;
  font-size: 72px;
  transition: none;
}

body.pristine .button-box {
  display: none;
}

body.pristine #msg-box {
  display: none;
}

html {
  height: 100%;
}

.attribution {
  align-self: flex-end;
  font-size: 10px;
  padding-bottom: 12px;
  padding-right: 20px;
}

.attribution > a {
  color: cornflowerblue;
  text-decoration: none;
}

.button {
  background-color: transparent;
  border: 1px solid cornflowerblue;
  border-radius: 7px;
  box-shadow: none;
  color: cornflowerblue;
  cursor: pointer;
  font-family: 'Tangerine', cursive;
  font-size: 28px;
  padding: 20px 35px;
  transition: all 0.25s ease 0s;
}

.button:hover {
  background-color: cornflowerblue;
  color: white;
}

.button:not(:first-child) {
  margin-left: 35px;
}

.button-box {
  align-items: center;
  display: flex;
  justify-content: center;
  margin-top: 25px;
}

.container {
  align-items: center;
  display: flex;
  flex-direction: column;
  flex: 1 1 100%;
  justify-content: center;
  margin-bottom: 7vh;
  padding: 3vw;
}

.intro {
  display: none;
  font-family: 'Tangerine', cursive;
  font-size: 48px;
}
