* {
  margin: 0;
  padding: 0;
}

html {
  background-color: #0C233F;
  color: #fff;
  font-family: "Lato", sans-serif;
  font-size: 1.125rem;
  line-height: 1.5;
}

body {
  margin: 0 auto;
  max-width: 40rem;
  padding: 0 2rem;
}

main {
  align-items: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 100vh;
  transition: opacity 150ms ease-in-out;
}

blockquote {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  quotes: "“" "”" "‘" "’";
  text-indent: -0.33em;
}

blockquote::before, blockquote::after {
  color: #266092;
}

blockquote::before {
  content: open-quote;
}

blockquote::after {
  content: close-quote;
}

@supports ( hanging-punctuation: first) {
  blockquote {
    text-indent: 0;
    hanging-punctuation: first;
  }
}

button {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-color: #0C233F;
  border: 2px solid #79BC43;
  border-radius: 9999px;
  color: #ffffff;
  cursor: pointer;
  display: inline-block;
  font: inherit;
  margin: 0;
  padding: 10px 20px;
  text-align: center;
  text-decoration: none;
  touch-action: manipulation;
  transition: background-color 200ms ease-in-out, 
              transform 100ms ease;
  user-select: none;
  -webkit-user-select: none;
}

@media (hover: hover) and (pointer: fine) {
  button:hover {
    background-color: #266092;
  }
}

button:active {
  transform: scale(0.9);
}

.fade-out {
  opacity: 0;
}

.fade-in {
  opacity: 1;
}
