.pixelated{
    image-rendering: pixelated;
}
.close-popup{
    fill: white;
    width: 20px;
    height: 20px;
    cursor: pointer;
}

@font-face {
    font-family: "Seravek";
    src: url("/src/assets/fonts/seravek/Seravek.woff2")
      format("woff2");
    font-weight: normal;
    font-style: normal;
    font-display: swap;
  }

  @font-face {
    font-family: "Clash Grotesk";
    src: url("/src/assets/fonts/clash-grotesk/ClashGrotesk-Regular.woff2")
      format("woff2");
    font-weight: normal;
    font-style: normal;
    font-display: swap;
  }

  .hero-title {
    font-size: 48px;
    font-weight: bold;
    font-family: "Seravek", "Arial", sans-serif;
    line-height: 1.2;
    margin-bottom: 24px;
    max-width: 900px;
  }

  .hero-description {
    font-weight: normal;
    margin-bottom: 32px;
    font-family: "Clash Grotesk", "Arial", sans-serif;
  }

  @media (min-width: 768px) {
    .hero-title {
      font-size: 48px;
    }
    .hero-description {
      font-size: 15px;
    }
  }

  @media (max-width: 768px) {
    .hero-title {
      font-size: 24px;
    }
    .hero-description {
      font-size: 14px;
    }
  }

  .popup {
    display: none;
    position: fixed;
    top: 100px;
    right: 20px;
    background-color: #32b0d9;
    color: white;
    padding: 20px;
    border-radius: 5px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    z-index: 1000;
  }

  .popup-content ul {
    padding: 0;
    list-style-type: none;
  }

  .popup-content ul li {
    margin: 5px 0;
  }

  .close-btn {
    background-color: #f44336;
    color: white;
    border: none;
    padding: 5px 10px;
    cursor: pointer;
    border-radius: 3px;
    font-size: 16px;
    position: absolute;
    top: 10px;
    right: 10px;
  }
  .popup-content {
    display: flex;
    align-items: center;
    gap: 20px;
  }

  @media (min-width: 768px) {
    .logo-img {
      height: 68px;
      width: 313px;
    }
  }

  @media (max-width: 768px) {
    .logo-img {
      height: 40px;
      width: 183px;
    }
  }