@font-face {
  font-family: "Britanica-Bold";
  src: url("britanica-bold.ttf") format("woff2"),
    url("britanica-bold.ttf") format("woff");
  font-weight: bold;
  font-style: normal;
}

@font-face {
  font-family: "Neue-Haas";
  src: url("neue-haas.ttf") format("woff2"), url("neue-haas.ttf") format("woff");
  font-weight: bold;
  font-style: normal;
}

* {
  margin: 0;
  padding: 0;
  font-family: "Neue-Haas", sans-serif;
}

.container {
  display: flex;
  flex-direction: column;
  text-align: center;
  width: 50%;
  margin: 0 auto;
  padding-top: 20px;
  align-items: center;
  gap: 20px;
}

.link {
  font-weight: bold;
  border: 1px solid black;
  border-radius: 20px;
  text-decoration: none;
  padding: 7px;
  color: white;
  background-color: black;
}

h2 {
  font-family: "Britanica-Bold";
  font-size: 30px;
  text-align: left;
}

p {
  font-size: 23px;
}

.two {
  padding-left: 80px;
  padding-top: 20px;
}

.three {
  padding-left: 160px;
  padding-top: 20px;
}

#emailInput {
  border: 0;
  height: 30px;
  font-size: 16px;
  border-bottom: 1px solid grey;
  width: 100%;
}

.btn-primary {
  background-color: black;
  border-radius: 20px;
  color: white;
  padding: 12px 15px;
  border: none;
  margin-top: 12px;
  width: 100%;
}

.field {
  border: black 0.6px solid;
  padding: 20px;
  width: 300px;
  margin: 40px auto;
}

.absol {
  position: absolute;
}

.bg {
  position: absolute;
  overflow: hidden;
  animation: moveUpDown 6s ease-in-out infinite alternate;
  width: 400px;
}

.bg-left {
  position: absolute;
  margin-left: 20px;
}

@keyframes moveUpDown {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(-250px);
  }
}

.right {
  right: 0;
}

.phone {
  border: 0.6px solid black;
  border-radius: 20px;
  margin: 40px;
  display: flex;
}

.phone2 {
  border: 0.6px solid black;
  border-radius: 20px;
  margin: 40px auto;
  display: flex;
  width: 35%;
}

.flex {
  display: flex;
  flex-direction: row;
}

.pt-50 p {
  padding-top: 40px;
  transform: rotate(5deg);
  font-family: "Britanica-Bold";
  width: 170px;
}

h1 {
  font-family: "Britanica-Bold";
  font-size: 38px;
}

.space {
  left: 100px;
  top: 500px;
}

.responseMessage {
  color: lightseagreen;
  font-size: 18px;
}

.mobile-only {
  display: none;
}

@media (max-width: 1200px) {
  .bg {
    display: none;
  }

  .absol {
    position: relative;
  }

  .mobile-only {
    display: flex;
  }

  .pt-50 {
    display: none;
  }

  img {
    width: 100px;
  }

  .phone {
    display: none;
  }

  .container {
    width: 70%;
  }

  .steps {
    width: 80%;
  }

  .two {
    padding-left: 40px;
  }

  .three {
    padding-left: 80px;
  }

  .container {
    width: 60%;
  }
}
