body {
    margin: 0;
    padding: 0;
    font-family: "Micro 5", sans-serif;
    background-image:url( "bg.gif");
    background-position: center;
    background-repeat: no-repeat;
    background-color: #000;
    background-size: cover;

    position: fixed;
    color: white; 
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    position: relative;
    overflow-y: auto;
    overflow-x: hidden;
}

#music-control {
    position: absolute;
    top: 10px;
    left: 10px;
}

#playPauseButton {
    background-color: #000;
    color: #fff;
    border: none;
    padding: 10px 20px;
    cursor: pointer;
    font-size: 20px;
}

#playPauseButton:hover {
    color: #6d1616;
}


.main-section {
    display: flex;
    justify-content: center;
    margin-bottom: -8vw; 
    gap: 50px; 
}

.nav-link {
    font-size: 100px;
    font-family: "Micro 5", sans-serif;
    color: #ffffff;
    text-decoration: none;
    transition: color 0.3s;
    
    
}

.nav-link:hover {
    background-color: #333;
    padding: 10px;
    margin: -10px;
    
}

.social-column {
    position: fixed;
    right: 10px;
    top: 10%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 20px; 
}

.social-link {
    font-size: 32px;
    color: #fff;
    text-decoration: none;
    transition: transform ease-in-out 200ms;
}

.social-link:hover {
  transform: scale(1.2) rotate(30deg);
  color: #166d61;
}

.dropdown {
    position: relative;
    display: inline-block;

}

.dropdown-content {
    display: none;
    position: absolute;
    background-color:  #333;
    min-width: 160px;
    box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.2);
    z-index: 1;
    padding: 4.5px ;
    margin: -10px;

}

.dropdown-content .dropdown-link {
    color: #ffffff;
    padding: 12px 14px;
    text-decoration: none;
    font-size: 59px;
    text-align: center;
    transition: background-color 0.3s;
    font-family: "Micro 5", sans-serif;
}

.dropdown-content .dropdown-link:hover {
    background-color: #272424;
    
}

.dropdown:hover .dropdown-content {
    display: flex;
}

.media-options {
  position: fixed;
  right: 10px;
  top: 5%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 20px;
}


.media-link {
    font-size: 30px;
    color: #fdfdfd;
    text-decoration: none;
    transition: color 0.3s;
}

.media-link:hover {
    color: #7a2c22;
}



  
  .intro {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: #000000;
    color: white;
    display: flex;
    flex-direction: column; 
    justify-content: center;
    z-index: 1000;
    align-items: center;
    
    
  }

 #txt{
    text-align: center;
  font-size: 4rem;
  margin-bottom: 20px;
  animation: glitch 0.5s infinite;}


  .intro.hidden {
    opacity: 0;
    visibility: hidden;
    transition: opacity 1s ease, visibility 1s ease;
  }
  #logo {max-width: 250px;
    max-height: 250px;
    cursor: grab;

}

#txt span {
    display: inline-block;
    transition: color 0.3s ease;
    cursor: grab;
  }
  
  #txt span:hover {
    color: #4d4b4b; 
  }

  @keyframes glitch {
    0% {
      clip: rect(24px, 9999px, 80px, 0);
      transform: skew(0.5deg);
    }
    10% {
      clip: rect(56px, 9999px, 120px, 0);
      transform: skew(-0.5deg);
    }
    20% {
      clip: rect(12px, 9999px, 40px, 0);
      transform: skew(1deg);
    }
    30% {
      clip: rect(40px, 9999px, 100px, 0);
      transform: skew(-0.5deg);
    }
    40% {
      clip: rect(24px, 9999px, 80px, 0);
      transform: skew(0.5deg);
    }
    50% {
      clip: rect(12px, 9999px, 100px, 0);
      transform: skew(1deg);
    }
    60% {
      clip: rect(56px, 9999px, 120px, 0);
      transform: skew(-1deg);
    }
    70% {
      clip: rect(12px, 9999px, 40px, 0);
      transform: skew(0.5deg);
    }
    80% {
      clip: rect(40px, 9999px, 80px, 0);
      transform: skew(-0.5deg);
    }
    90% {
      clip: rect(24px, 9999px, 80px, 0);
      transform: skew(1deg);
    }
    100% {
      clip: rect(12px, 9999px, 40px, 0);
      transform: skew(0.5deg);
    }
  }