body {
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.1));
  font-family: "Lato", sans-serif;
  background-size: cover;
  background-position: center;
  color: #000000;
  font-size: 18px;
  line-height: 1.5em;
  margin: 0px;
  padding-top: 100px;
}
section {
  padding: 0px 20px;
  min-height: 90vh;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  align-content: center;
  /* gap: 30px; */
}
div {
  width: 100%;
}
img {
  display: block;
  margin: -80px auto 0;
  width: 300px;
  height: auto;
}
.text-align-class {
  text-align: center;
}
h1 {
  font-size: 80px;
  font-weight: 700;
  line-height: 1.3em;
  margin: 0px;
}
h2 {
  font-size: 32px;
  font-weight: 400;
  line-height: 1.3em;
  margin: 0px;
}
a {
  color: #000000;
  text-decoration: none;
}
a:hover {
  color: #7fabd1;
  text-decoration: none;
}
.social-media p {
  margin: 5px 0px;
}
.social-media .fa-brands {
  margin: 10px 5px;
  font-size: 24px;
}
.notify-me {
  margin-top: 20px;
}
form {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin: 50px 0px;
}
#email {
  padding: 12px 20px;
  font-size: 16px;
  width: 100%;
  max-width: 400px;
  border-radius: 30px;
  border: 0px;
  box-shadow: 4px 4px 10px 4px rgba(0, 0, 0, 0.2);
}
button {
  padding: 12px 30px;
  font-size: 16px;
  background-color: #fff200;
  color: #000000;
  border: none;
  cursor: pointer;
  border-radius: 20px;
  box-shadow: 4px 4px 10px 4px rgba(0, 0, 0, 0.2);
}
button:hover {
  background-color: #7fabd1;
}
@media only screen and (max-width: 768px) {
  h1 {
    font-size: 80px;
    line-height: 96px;
  }
}
@media only screen and (max-width: 575px) {
  h1 {
    font-size: 54px;
  }
  body {
    font-size: 20px;
  }
  img {
    width: 250px;
  }
}
@media only screen and (max-width: 380px) {
  h1 {
    font-size: 48px;
    line-height: 60px;
  }
  img {
    width: 200px;
  }
}
@media screen and (max-width: 991px) and (orientation: landscape) {
  section {
    padding: 50px 20px;
  }
}
