* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  width: 100%;
  height: 100vh;
  background: #222;
  color: #fff;
  font-size: 62.5%;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
}

main {
  width: 100%;
  height: 100%;
  display: grid;
  grid-template-columns: 1fr;
  justify-items: center;
  align-items: center;
  justify-content: center;
}
main section {
  display: flex;
  max-width: 100%;
  justify-content: center;
  align-items: center;
  gap: 2rem;
}
main section button {
  text-transform: uppercase;
  text-align: center;
  font-size: 3em;
  border-radius: 2.5rem;
  transition: all 0.3s ease;
}
main section button:hover {
  cursor: pointer;
  background-color: black;
  color: white;
  border: 1px solid greenyellow;
  transform: scale(1.05);
}
main section:nth-child(1) {
  display: grid;
  grid-template-columns: 1fr;
  align-items: center;
  justify-items: center;
  text-transform: uppercase;
  letter-spacing: 0.5rem;
  gap: 3rem;
  text-align: center;
}
main section:nth-child(1) h1 {
  font-size: 4em;
  color: greenyellow;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}
main section:nth-child(1) h2 {
  font-size: 9em;
  color: darkorange;
  text-shadow: 0 0 10px rgba(255, 140, 0, 0.5);
  font-weight: 700;
  font-family: "Courier New", Courier, monospace;
}
main section:nth-child(2) button {
  padding: 2rem;
}
main section:nth-child(3) button {
  padding: 1.4rem;
  cursor: pointer;
}
main section:nth-child(3) button:hover {
  background-color: red;
  transform: scale(1.1);
}

@media (max-width: 650px) {
  section {
    display: flex;
    flex-direction: column;
  }
}

/*# sourceMappingURL=style.css.map */
