body {
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
  background-color: var(--all-white);
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  margin: 0;
}

/* Cnteúdo da página */
.container {
  text-align: center;
  max-width: 600px;
  padding: 20px;
  /* background-color: #fff; */
  /* border-radius: 10px; */
  /* box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); */
}

/* Ajuste de margens para evitar "empurrar" conteúdo */
h1 {
  font-size: 70px;
  font-weight: bold;
  color: var(--all-black);
  margin-bottom: 20px;
}

p {
  font-size: 18px;
  color: #666;
  margin-bottom: 20px;
  line-height: 1.6;
}

/* Botão estilizado */
button {
  background-color: var(--light-blue);
  border: none;
  border-radius: 40px;
  padding: 20px 50px;
  font-size: 24px;
  color: var(--all-black);
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

button:hover {
  background-color: #cce4ff;
  box-shadow: 9px 10px 0px -3px rgba(0, 0, 0, 1);
}

/* Responsividade */
@media (max-width: 450px) {
  h1 {
    font-size: 40px;
    margin-bottom: 15px;
  }
  p {
    font-size: 16px;
    margin-bottom: 15px;
  }
  button {
    padding: 16px 40px;
    font-size: 18px;
  }
}
