html {
  background-color: #f7f7f7;
}
.container {
  padding-top: 80px;
  padding-inline: 60px;
}
.header {
  width: 100%;
  box-sizing: border-box;
  backdrop-filter: blur(40px);
  position: fixed;
  display: flex;
  justify-content: space-between;
  padding: 20px 25px;
  margin-bottom: 40px;
}
.links {
  display: flex;
  align-items: center;
  gap: 45px;
}
.links__link {
  font-size: 1.375rem;
  text-decoration: none;
  color: #000;
  font-family: "FactorA-Medium";
  cursor: pointer;
}
.hero__title {
  text-align: center;
  font-size: 3.75rem;
  font-family: "FactorA-Bold";
  margin-bottom: 40px;
}
.hero__title--style-handwritten {
  text-wrap: balance;
  background: #f2b85a;
  background: linear-gradient(to right, #f2b85a 0%, #f26c49 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-family: "Pacifico";
  line-height: normal;
}
.register {
  display: block;
  background: rgb(234, 183, 65);
  background: linear-gradient(
    149deg,
    rgba(234, 183, 65, 1) 0%,
    rgba(242, 108, 71, 1) 100%
  );
  border: none;
  padding: 20px 35px;
  color: #fff;
  border-radius: 15px;
  font-size: 1.25rem;
  font-family: "Inter-Bold";
  box-shadow: 0px 0px 30px 12px #f26c4733;
  cursor: pointer;
  margin-inline: auto;
  margin-bottom: 45px;
}
.image {
  display: block;
  margin-inline: auto;
  margin-bottom: 40px;
}
.feature {
  background-color: #ffffff;
  border-radius: 32px;
  width: 100%;
  padding: 60px 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-sizing: border-box;
  margin-bottom: 15px;
}
.features {
  margin-bottom: 100px;
}
.feature__info {
  width: 50%;
}
.feature__photo {
  width: 35%;
}
.feature__title {
  font-size: 2.5rem;
  font-family: "FactorA-Bold";
  margin-bottom: 5px;
}
.feature__description {
  font-family: "Inter-Regular";
  font-size: 1.75rem;
}
.features__title {
  font-size: 3.4rem;
  color: #000;
  font-family: "FactorA-Bold";
  text-align: center;
  margin-bottom: 25px;
}
.map {
  display: block;
  margin-inline: auto;
  margin-bottom: 120px;
}
.map__photo {
  display: block;
  margin-inline: auto;
  margin-bottom: 20px;
}
.map__title {
  text-align: center;
  font-size: 3.4rem;
  font-family: "FactorA-Bold";
  margin-bottom: 5px;
}
.map__description {
  text-align: center;
  font-family: "Inter-Regular";
  font-size: 1.75rem;
  margin-bottom: 20px;
}
.map__button {
  display: block;
  margin-inline: auto;
  font-family: "Inter-Bold";
  padding: 18px 30px;
  background-color: #F7F7F7;
  border: 3px solid #000000;
  border-radius: 15px;
  color: #000;
  font-size: 1.375rem;
  cursor: wait;
}

@media screen and (max-device-width: 625px) {
  html {
    font-size: 60%;
  }
  .container {
    padding-inline: 20px;
  }
  .links {
    display: none;
  }
  .feature {
    padding: 30px;
    flex-direction: column;
  }
  .feature__info {
    width: auto;
    margin-bottom: 35px;
  }
  .feature__photo {
    width: 70%;
  }
}
@media screen and (max-device-width: 880px) {
  .image {
    width: 90%;
  }
}
