@media (max-width: 768px) {
  
  

  html {
      background-size: contain;
      background-attachment: scroll;
  }

header {
    position: fixed;
    top: 0px;
    left: -5px;
    width: 100%;
    background-color: transparent;
    padding: 54px 40px;
    z-index: 1000;
    font-family: "Urbanist";
    font-size: 60px;
    mix-blend-mode: multiply;
}

  .sparkling-header {
      display: contents;
    
  }

  p3 {
      font-size: 18px;
  }

nav {
  z-index: 0;
  display: grid;
  justify-content: space-evenly;
  align-items: center;
  padding: 10px;
  margin-top: 45px;
  margin-left: 30px;
}

  .translucent-container {
      display: none;
  }

  .marquee-container {
      position: fixed;
      top: 0;
      height: 60px;
  }

  .marquee-text span {
      font-size: 1.5rem;
  }

  body {
      flex-direction: column;
      align-items: stretch;
      height: auto;
      overflow: auto;
  }

  .column {
      width: 100%;
      padding: 10px;
  }

  .container {
      position: static;
      bottom: auto;
      left: auto;
      padding: 5px;
      font-size: x-small;
  }

  .container h2 {
      font-size: 1.5em;
  }

  .spiral-link {
      max-width: 100%;
      font-size: 1em;
      padding: 11px 35px;
  }

  footer {
      position: static;
      padding: 5px;
      font-size: x-small;
  }

  footer:hover {
      padding: 5px;
  }
}




@import url('https://fonts.googleapis.com/css2?family=Jersey+10+Charted&family=KoHo:ital,wght@0,200;0,300;0,400;0,500;0,600;0,700;1,200;1,300;1,400;1,500;1,600;1,700&family=Kodchasan:ital,wght@0,200;0,300;0,400;0,500;0,600;0,700;1,200;1,300;1,400;1,500;1,600;1,700&family=Urbanist:ital,wght@0,100..900;1,100..900&display=swap');




html {
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    background-attachment: fixed;
    background-blend-mode: multiply; /* Blends color with the image */
}

header {
    position: fixed;
    top: -100px;
    left: -35px;
    width: 100%;
    background-color: transparent; /* Example background color */
    padding: 50px 40px; /* Example padding */
    z-index: 1000; /* Ensures it stays on top of other elements */
    font-family: "Urbanist";
    font-size: 50px;
    mix-blend-mode: multiply;
   
}

.sparkling-header {
  color: blue;
  padding-left: 10px;
}

p3 {
  font-size: 24px;
  z-index: 1;
  mix-blend-mode: color-burn;
  }

nav {
  z-index: 9999;
  mix-blend-mode: mutiply;
  padding: 20px;
  display: flex;
  flex-direction: unset;
  margin-top: 20px;
  justify-content: space-evenly; /* Distribute items evenly */
  align-items: center; /* Center align items vertically */
  padding: 20px;
  margin-top: 20px;}


.translucent-container {
    width: 40%; /* Adjust width as needed */
    padding: 20px;
    background-color: rgba(255, 255, 255, 0.6); /* White with 60% opacity */
    border-radius: 15px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Subtle shadow for depth */
    backdrop-filter: blur(10px); /* Adds blur effect behind the container */
    position: relative;
    margin: 20px; /* Add space around the container */
    font-family: 'helvetica', sans-serif;
    font-size: 12px;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    margin-top: 125px;
}


.translucent-container.hidden {
    display: none;  /* Hide the element */
    opacity: 0;  /* Optionally, fade it out */
}

.close-button {
    position: relative; /* Position it relative to the container */
    top: 10px; /* Distance from the top */
    right: 10px; /* Distance from the right */
    background-color: transparent; /* Transparent background */
    border: none; /* No border */
    color: black; /* Text color */
    font-size: 20px; /* Size of the close icon */
    cursor: pointer; /* Show pointer cursor on hover */
    transition: color 0.3s; /* Smooth transition for color */
    
}

/* Change color on hover */
.close-button:hover {
    color: #0000ee; /* Change color on hover */
}


.sub-header h4 {
    font-size: 50px;
    color: #000; /* Black text */
    margin: 0; /* Remove extra margin */
    line-height: 1.5; /* Improve readability */
}





/* Marquee Container */
.marquee-container {
    position: fixed;
    top: 120px; /* Adjust based on your header position */
    width: 100%;
    overflow: hidden; /* Hide the overflow to make it smooth */
    display: flex;
    justify-content: center;
    align-items: center;
    height: 80px;
    z-index: 10;
    perspective: 1000px; /* Adds depth to 3D animation */
}

/* Marquee Text */
.marquee-text {
    display: flex;
    gap: 50px;
    animation: scroll 60s linear infinite; /* Infinite horizontal scrolling */
}

/* Each text block inside the marquee */
.marquee-text span {
    font-family: 'Urbanist', sans-serif;
    font-size: 2.5rem;
    font-weight: 500;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.1);
    animation: funky-rotate 10s ease-in-out infinite alternate; /* Adds the funky 3D effect */
    transform-origin: center;
    transform-style: preserve-3d;
    color: #0000ee;
}

/* Marquee Scrolling Animation */
@keyframes scroll {
    0% { transform: translateX(100%); }
    100% { transform: translateX(-100%); }
}

/* Funky 3D Rotation Animation */
@keyframes funky-rotate {
    0% {
        transform: rotateY(0deg) scale(1);
        color: #000;
    }
    25% {
        transform: rotateY(90deg) rotateX(10deg) scale(1.2);
        color: #0000ee;
    }
    50% {
        transform: rotateY(180deg) scale(0.8);
        color: #0000ef;
        
    }
    75% {
        transform: rotateY(270deg) rotateX(-10deg) scale(1.1);
        color: #0000eg;
    }
    100% {
        transform: rotateY(360deg) scale(1);
        color: #000;
    }
}




.sub-header h4 {
    font-size: 50px;
    text-align: start;
    color: #000000;
    opacity: 1;
    top: -50px;
    left: 50%;
    position: static;
}

 
body {
    display: flex;
    justify-content: space-between; /* Creates space between the two columns */
    align-items: flex-start; /* Aligns content at the top */
    height: 100vh;
    margin: 0;
    overflow: hidden; /* Ensure no scrollbars are shown */
    font-family: Helvetica, Arial, sans-serif;
}

.column {
    width: 50%; /* Each column takes up 50% of the width */
    padding: 20px; /* Padding to add space around the content */
    box-sizing: border-box; /* Ensures padding doesn't affect the width */
}



.container {
    position: fixed;
    bottom: 50px; /* Adjust as needed */
    left: 20px; /* Adjust as needed */
    background-color: rgba(245, 250, 255, 0.8); /* Transparent white background */
    padding: 10px;
    border-radius: 5px;
    font-family: Helvetica, Arial, sans-serif;
    font-size: small;
    font-variant: small-caps;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1); 
    z-index: 1000; 
}

.container h2 {
    font-size: 2em; /* Adjust as needed */
    margin: 0;
}

.container section {
    text-align: center;
}

.container p {
    margin: 5px 0;
}

.container p2 {
    font-size: small;
    font-style: italic;
}

        
#spiral-container {
    position: fixed;
    width: 100%;
    height: 100%;
}

.spiral-link {
    
    transform: translate(-50%, -50%);
    background-color: rgba(255, 255, 255, 0.5); /* See-through background */
    color: #333; 
    padding: 10px 10px;
    text-decoration: none;
    border: none; 
    border-radius: 5px;
    font-family: 'Urbanist;
    transition: all 0.3s ease;
    flex-grow: 1;
    max-width: 200px;
    margin: 10px;
}

.spiral-link:hover {
  transform: scale3d(1.5, 1.5, 1.5)  translateY(8px);
  color: blue;
  font-size: 1.5em;
  transition: ease-in-out;
  
}
}

a.spiral-link:hover {
    transform: scale3d(1.5, 1.5, 1.5);
    color: blue;
    font-size: 1.5em; /* Enlarge text size */
}


/* Style for the falling stars effect */
.spiral-link::after {
    content: '*';
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    opacity: 0;
    font-size: 24px;
    color: #001bff; /* Gold color */
    animation: fall 1s forwards;
    display: none; /* Initially hidden */
}

/* Show the falling stars on hover */
.spiral-link:hover::after {
    display: inline-block; /* Make it visible */
    animation: fall 1s forwards;
}

/* Animation for the falling stars */
@keyframes fall {
    0% {
        top: 100%;
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }
    100% {
        top: 150%;
        opacity: 0;
        transform: translateX(-50%) translateY(30px);
    }
}

footer {
    position: absolute;
    bottom: 0;
    width: 100%;
    background-color: #333;
    color: #fff;
    text-align: center;
    padding: 10px 0;
    transition: padding 0.3s ease-in-out;
    font-family: Helvetica, Arial, sans-serif;
    font-size: small;
}




footer p {
    margin: 0;
}

footer:hover {
    padding: 10px 0.5em;
}
