@font-face {
  font-family: "Humnst777BT";
  src: url("../../frontend/assets/fonts/Humnst777BTBold.ttf") format("truetype");
  font-style: normal;
  font-weight: 700;
}
@font-face {
  font-family: "Humnst777BT";
  src: url("../../frontend/assets/fonts/Humnst777BTBlack.ttf") format("truetype");
  font-style: normal;
  font-weight: 900;
}
html,
* {
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: Humnst777BT;
  min-height: 100vh;
  position: relative;
}

main {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  background-attachment: fixed;
  background-image: url("../../frontend/assets/jpg/bg.jpg");
  background-position: center;
  background-size: cover;
}
main::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  z-index: 0;
}

.content {
  display: flex;
  flex-direction: column;
  align-items: center;
  row-gap: 40px;
  padding-top: 9rem;
  z-index: 2;
}
.content h1 {
  color: #ffffff;
  font-size: 2rem;
  font-weight: 700;
  margin: 0;
  max-width: 620px;
  text-align: center;
  text-transform: uppercase;
}
.content h2 {
  color: #ffffff;
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0;
  text-align: center;
}

.country-menu {
  display: flex;
  flex-direction: column;
  row-gap: 36px;
  align-items: center;
  padding-bottom: 3rem;
  width: 100%;
}
.country-menu a {
  text-decoration: none;
  width: 550px;
}
.country-button {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: #585858;
  border-radius: 10px;
  padding: 15px 20px;
  transition-property: all;
  transition-duration: 0.2s;
  transition-timing-function: ease;
  transition-delay: 0s;
}
.country-button span {
  color: #ffffff;
  font-size: 1.25rem;
  font-weight: 900;
  text-transform: uppercase;
}
.country-button .button-arrow-icon {
  visibility: hidden;
}
.country-button:hover, .country-button:active {
  background-color: #e21936;
}
.country-button:hover .button-arrow-icon, .country-button:active .button-arrow-icon {
  visibility: visible;
}

footer {
  display: flex;
  justify-content: center;
  background: #212121;
  padding: 3rem;
  width: 100%;
  z-index: 2;
}
footer span {
  color: #ffffff;
  font-size: 1rem;
  font-weight: 900;
  text-align: center;
  text-transform: uppercase;
}

@media (max-width: 786px) {
  .content {
    row-gap: 60px;
    padding-top: 6rem;
  }
  .content h1,
.content h2 {
    max-width: 450px;
  }

  .country-menu a {
    width: 420px;
  }
}
@media (max-width: 480px) {
  .content {
    padding-top: 5rem;
  }
  .content h1,
.content h2 {
    max-width: 350px;
  }

  .country-menu {
    padding: 0 1.5rem 3rem;
  }
  .country-menu a {
    width: 100%;
    max-width: 380px;
  }

  footer {
    padding: 3rem 1.5rem;
  }
}

/*# sourceMappingURL=site.css.map */
