body {
  display: flex;
  gap: 1em;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100vh;
  background-color: #222;
  color: white;
  font-family: "Open Sans";
  padding: 1em;
}
form {
  display: flex;
  flex-direction: column;
}
h1 {
  text-align: center;
  font-family: "Dancing Script";
  color: #89CFF0;
  font-size: 6rem;
}
h2 {
  text-align: center;
  font-size: 2rem;
  max-width: 500px;
}
label {
  margin-bottom: 0.5rem;
}
input {
  margin-bottom: 1rem;
  padding: 0.5rem;
  border-radius: 0.25rem;
  border: 1px solid #ccc; 
}

button {
  align-self: center;
  padding: 1rem 2rem;
  background-color: #010911;
  cursor: pointer;
}
button:hover {
  background-color: #0d1521;
}
button:active {
  scale: 1.05;
}

@media screen and (max-width: 768px) {
  h1 {
    font-size: 4.5rem;
  }
  h2 {
    font-size: 2rem;
  }
}
