.link-list li a:hover {
    animation: pulse 2s ease infinite;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

h1 {
    font-family: "technologist2_fontbyelectronnickpendergrass";
    src: url('/fonts/technologist2_fontbyelectronnickpendergrass.ttf');
}

body {
    
    background-size: cover;
    background-repeat: no-repeat;
    background: url('images/background-image.png');
    background-color: #000;
}

.glass-window {
    width: 300px;
    padding: 20px;
    margin: 50px auto;
    background: rgba(255, 255, 255, 0.2);
    /* Semi-transparent white background */
    border-radius: 10px;
    /* Rounded corners similar to Vista windows */
    backdrop-filter: blur(10px) brightness(1.2);
    /* Creates the "frosted glass" look */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    /* Adds some depth */
    border: 1px solid rgba(255, 255, 255, 0.3);
    /* Light border for definition */
    color: #ffffff;
    /* Text color for contrast */
}

.link-list-container {
    text-align: center;
    margin: 50px auto;
    width: 60%;
    width: 300px;
    padding: 20px;
    margin: 50px auto;
    background: rgba(255, 255, 255, 0.2);
    /* Semi-transparent white background */
    border-radius: 10px;
    /* Rounded corners similar to Vista windows */
    backdrop-filter: blur(10px) brightness(1.2);
    /* Creates the "frosted glass" look */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    /* Adds some depth */
    border: 1px solid rgba(255, 255, 255, 0.3);
    /* Light border for definition */
    /* Text color for contrast */
    z-index: 10; /* Ensure it's above the clouds */
    color: #fff; /* White text to contrast against the black background */
  }
  
  .link-list {
    list-style: none;
    padding: 0;
  }
  
  .link-list li {
    margin: 15px 0;
    font-size: 1.5em;
  }

  .link-list label:hover {
    color: #FF6347;
    transform: scale(1.1);
    animation: pulse 2s infinite ease-in-out;
  }
  .link-list li a {
    color: #B22222;
    text-decoration: none;
    transition: transform 0.2s, color 0.2s;
  }
  
  .link-list li a:hover {
    color: #FF6347;
    transform: scale(1.1);
    animation: pulse 2s infinite ease-in-out;
  }
  
  .cool {
    display: none;
    position: relative; /* Make dropdown content overlay the rest */
    top: 100%; /* Start dropdown content below the link */
    left: 50%;
    transform: translateX(-50%);
   
    padding: 10px;
    border-radius: 5px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
    z-index: 15; /* Make sure it's above the main content */
}

  /* Additional styling for dropdown links */
.cool li {
    list-style: none;
    margin: 5px 0;
}

/* Ensure anchor tags are styled properly */
.cool a {
    color: #fff;
    text-decoration: none;
}
  
  .box:checked + label + .cool {
    display: block;
    margin-top: 10px;

  }
  
  /* Hide checkboxes while keeping functionality */
  .box {
    display: none;
  }
  
  label {
    cursor: pointer;
    color: #B22222;
  }

  .cardbox {
    position:relative;
  }

  .hhlogo:hover {
    transition:cubic-bezier();
    animation: logowave 4.5s ease-in-out infinite;
}

@keyframes logowave {
    0% {
        transform: perspective(32cm) rotateX(4deg) scale(1);
    }

    50% {
        transform: perspective(16cm) rotateX(-4deg) scale(1.05);
    }

    100% {
        transform: perspective(32cm) rotateX(4deg) scale(1);
    }
}
.siteicon {
  max-height: 200px;
  max-width: 200px;
}
  
/* Mobile styles */
@media only screen and (max-width: 768px) {
    body {
        background-color: #000000;
    }

    .link-list-container {
        width: 90%;
        margin: 20px auto;
        padding: 15px;
        font-size: 1em; /* Smaller font size for mobile */
    }

    .glass-window {
        padding: 10px;
        border-radius: 5px; /* Smaller border radius for a compact design */
    }

    .shop-list-container {
      text-align: center;
      margin: 50px auto;
      width: 60%;
      width: 600px;
      padding: 20px;
      margin: 50px auto;
      background: rgba(255, 255, 255, 0.2);
      /* Semi-transparent white background */
      border-radius: 10px;
      /* Rounded corners similar to Vista windows */
      backdrop-filter: blur(10px) brightness(1.2);
      /* Creates the "frosted glass" look */
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
      /* Adds some depth */
      border: 1px solid rgba(255, 255, 255, 0.3);
      /* Light border for definition */
      /* Text color for contrast */
      z-index: 10; /* Ensure it's above the clouds */
      color: #fff; /* White text to contrast against the black background */
      max-height: 80vh; /* Set an appropriate max-height to start with */
    }
    
}
