:root {
  --bg: #1a1e1c;
  --fg: #333a35;
  --border: #434945;
  --text: #ccd3cf;
}

@keyframes fadeIn {
  to {
      opacity: 1;
  }
}

* {
  font-family: "Forum", serif;
  font-weight: 400;
}

body > h1 {
  font-size: 48px;
  margin-top: 10px;
  margin-bottom: 10px;
}

body > h3 {
  font-size: 24px;
  margin-top: 10px;
  margin-bottom: 10px;
}

body > p {
  font-size: 24px;
}

ul {
  list-style-position: inside;
}

li {
  font-size: 24px;
}

html {
  background-color: var(--bg);
  /* pad center items on phone screens */
  padding-left: 15px;
  padding-right: 15px; 
}
body {
  text-align: center;
  max-width: 700px;
  margin: auto;
  margin-top: 30px;
  padding: 30px;
  background-color: var(--fg);
  color: var(--text);
  border: 3px var(--border) solid;
  border-radius: 20px;
  opacity: 0;
  animation: fadeIn 2s forwards;
}

button {
  font-size: 20px;
  background-color: var(--fg);
  color: var(--text);
  border: 3px #434349 solid;
  border-radius: 20px;
  width: 150px;
  height: 60px;
  transition: 100ms;
  transition-timing-function: ease-in-out;
  box-shadow: 0px 0px 10px #1a1a1e99;
}

button:hover {
  scale: 1.05;
  box-shadow: 0px 0px 12px #3d3d44b4;
}

#button-container {
  display: flex;
  flex-direction: row;
  gap: 10px;
  justify-content: center;
  margin-bottom: 25px;
}

@media (max-width: 700px) {
  #button-container {
    flex-direction: row;
    flex-wrap: wrap;
  }
  button {
    margin: auto;
  }
}