* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background-color: #000;
  color: #fff;
  font-family: 'Courier New', monospace;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  padding: 20px;
}

.container {
  text-align: center;
  max-width: 600px;
  width: 100%;
}

.image-wrapper img {
  width: 60%;
  max-width: 300px;
  border-radius: 10px;
  margin-bottom: 30px;
  object-fit: cover;
}



@keyframes typing {
  from { width: 0 }
  to { width: 100% }
} 

 @keyframes blink {
  50% { border-color: transparent }
} 

.folder-button {
  font-size: 3rem;
  background: none;
  border: none;
  cursor: pointer;
  color: white;
  transition: transform 0.3s ease;
}
.mixes-button {
  font-size: 3rem;
  background: none;
  border: none;
  cursor: pointer;
  color: white;
  transition: transform 0.3s ease;
}
.gallery-button {
  font-size: 3rem;
  background: none;
  border: none;
  cursor: pointer;
  color: white;
  transition: transform 0.3s ease;
}

.folder-button:hover {
  transform: scale(1.1);
}
.mixes-button:hover {
  transform: scale(1.1);
}
.gallery-button:hover {
  transform: scale(1.1);
}

@media (max-width: 500px) {
  h1 {
    font-size: 1.2rem;
  }

  .folder-button {
    font-size: 2.5rem;
  }
    .mixes-button {
        font-size: 2.5rem;
    }

}

.social-links {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-top: 20px;
}

.social-links a {
  color: #fff;
  text-decoration: none;
  font-size: 1.0rem;
  transition: color 0.3s ease;
}

.social-links a:hover {
  color: #00f;
}
  .social-links a:visited {
  color: #f0f;
}
  .social-links a:active {
  color: #f00;
}

.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); /* Adjusts columns based on screen size */
  gap: 20px;
  max-width: 1000px;
  padding: 20px;
  width: 100%;
}

.gallery img, .gallery video {
  width: 100%;
  height: auto;
  border-radius: 10px;
  transition: transform 0.3s ease;
}

.gallery img:hover, .gallery video:hover {
  transform: scale(1.05);
}

@media (max-width: 768px) {
  .gallery {
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr)); /* Smaller columns for smaller screens */
    gap: 15px;
  }
}

@media (max-width: 480px) {
  .gallery {
    grid-template-columns: 1fr; /* Single column for very small screens */
    gap: 10px;
  }
}

