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

body {
  width: 100%;
  height: 100vh;
  background-color: black;
  color: white;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-family: 'Roboto', sans-serif;
}

h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
}

p {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

input {
  width: 100%;
  height: 3rem;
  border: none;
  border-radius: 0.5rem;
  background-color: #333;
  color: white;
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

button {
  width: 100%;
  height: 3rem;
  border: none;
  border-radius: 0.5rem;
  background-color: #333;
  color: white;
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

footer {
  width: 100%;
  height: 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: white;
  background-color: #333;
  position: absolute;
  bottom: 0;
}
