body {
  color: #04151F;
  background: #FEFAF5;
  font: 90% Merriweather, serif;
  font-weight: 400;
  padding: 4rem 1rem;
  line-height: 1.5rem;
  max-width: min(72ch, 100% - 4rem);
  margin-inline: auto;
}

.fun-title {
  font-size: 1.5rem;
}

@keyframes playwithme-celebration {
  0% {scale: 100%;}
  50% {scale: 110%;}
  100% {scale: 100%;}
}

.playwithme-container {
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;

  /* Prevent double tap zoom */
  touch-action: manipulation;
}

.playwithme-header {
  font-size: 1.5rem;
  font-weight: 400;
  text-align: center;
}

.playwithme-button-row {
  width: 100%;
  margin: 2rem auto;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
}

.playwithme-button {
  font-family: inherit;
  color: #04151f;

  margin: 2rem 1rem;
  font-size: 0.5rem;
  padding: 0.5rem 1rem;
  border-radius: 0.5rem;

  /* animation to smooth transition */
  transition: 0.2s ease-in-out;

  /* ios highlight button on click */
  -webkit-tap-highlight-color: transparent;

  &.yes {
    background-color: #36d460;
    border-color: #36d460;
  }

  &.no {
    background-color: #e74133;
    border-color: #e74133;
  }

  &.reset {
    margin-top: 10rem;
  }
}
