body {
  margin: 0;
}
main {
  height: 100vh;
  width: 100%;
  background-image: url(init-image.jpg);
  background-repeat: no-repeat;
  background-size: cover;
}

.overlay {
  display: grid;
  place-content: center;
  height: 100%;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  text-align: center;
}

h1,
p {
  font-family: Roboto, sans-serif;
  margin: 0;
  padding: 0 10px 0 10px;
  color: white;
}

h1 {
  margin-bottom: 20px;
  font-size: 32px;
  text-transform: uppercase;
}
p {
  font-size: 16px;
  font-weight: 300;
}

@media (min-width: 768px) {
  h1 {
    font-size: 62px;
  }
  p {
    font-size: 32px;
  }
}

form {
  display: grid;
  grid-template-columns: 2fr 1fr;
  column-gap: 20px;
  margin-top: 30px;
  text-align: initial;
}

input {
  border-radius: 10px;
}

input[type="email"] {
  padding: 10px;
}
