@font-face {
  font-family: "Arp Display";
  src: url("/fonts/arp-display.woff2") format("woff2");
  font-weight: normal;
  font-style: normal;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  padding: 0;
  font-family: "Arp Display", Arial, sans-serif;

  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.container {
  width: 100%;
  min-height: 100vh;
  background-color: black;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px;
}

.content-container {
  width: 100%;
  max-width: 480px;
  min-height: 90vh;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 20px;
}

.logo {
  height: 122px;
  width: auto;
  max-width: 100%;
  object-fit: contain;
}

.thematic-break {
  width: 100%;
  height: 2px;
  background-color: white;
}

nav {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 7px;
  color: white;
}

nav span {
  font-size: 25px;
  text-align: center;
}

.footer {
  color: white;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 40px;
  width: 100%;
  font-size: 20px;
}

.proud-element {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 30px;
  text-align: center;
  font-size: 16px;
}

.proud-element img {
  height: 45px;
  width: auto;
  object-fit: contain;
}

.btn {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 5px 20px;
  transition:
    background-color 0.3s,
    transform 0.2s;
}

.btn:hover {
  background-color: #1a6aff;
  cursor: pointer;
}

.btn p {
  margin: 0;
}

a {
  text-decoration: none;
  color: inherit;
}

@media screen and (max-width: 768px) {
  .container {
    padding: 15px;
  }

  .content-container {
    gap: 18px;
    min-height: 85vh;
  }

  .logo {
    height: 100px;
  }

  nav span {
    font-size: 22px;
  }

  .footer {
    font-size: 18px;
    margin-top: 35px;
    padding: 0 15px;
  }

  .proud-element {
    gap: 20px;
    font-size: 15px;
  }

  .proud-element img {
    height: 40px;
  }

  .thematic-break {
    width: 70%;
    height: 2px;
    background-color: white;
  }
}

@media screen and (max-width: 600px) {
  .container {
    padding: 12px;
  }

  .content-container {
    gap: 15px;
    min-height: 80vh;
  }

  .logo {
    height: 80px;
  }

  nav span {
    font-size: 20px;
  }

  .footer {
    font-size: 16px;
    margin-top: 30px;
    padding: 0 10px;
    flex-wrap: wrap;
    gap: 15px;
  }

  .proud-element {
    gap: 15px;
    font-size: 14px;
  }

  .proud-element img {
    height: 35px;
  }

  .btn {
    padding: 8px 15px;
    min-height: 45px;
  }
}

@media screen and (max-width: 480px) {
  .container {
    padding: 10px;
  }

  .content-container {
    gap: 12px;
    min-height: 75vh;
  }

  .logo {
    height: 70px;
  }

  nav {
    gap: 6px;
  }

  nav span {
    font-size: 18px;
  }

  .footer {
    font-size: 15px;
    margin-top: 25px;
    padding: 0 5px;
    flex-direction: column;
    gap: 5px;
    align-items: center;
  }

  .proud-element {
    gap: 12px;
    font-size: 13px;
  }

  .proud-element img {
    height: 32px;
  }

  .btn {
    padding: 6px 12px;
    min-height: 40px;
    width: 60%;
  }
}

@media screen and (max-width: 360px) {
  .container {
    padding: 8px;
  }

  .content-container {
    gap: 10px;
    min-height: 70vh;
  }

  .logo {
    height: 60px;
  }

  nav span {
    font-size: 16px;
  }

  .footer {
    font-size: 14px;
    margin-top: 20px;
  }

  .proud-element {
    gap: 10px;
    font-size: 12px;
  }

  .proud-element img {
    height: 28px;
  }

  .btn {
    padding: 5px 10px;
    min-height: 36px;
  }
}

@media screen and (min-width: 1920px) {
  .content-container {
    width: 480px;
    height: 90vh;
  }
}

@media screen and (min-width: 2560px) {
  .container {
    padding: 40px;
  }

  .content-container {
    max-width: 520px;
  }
}
