body {
  margin: 0;
  height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
}
#bg-video {
    position: fixed;
    top: 0;
    left: 0;
    min-width: 100%;
    min-height: 100%;
    object-fit: cover;
    z-index: -1;

}

.username {
    font-size: 74px;
    color: rgba(38, 189, 0, 0.705);
    margin-bottom: 15px;
    padding-bottom: 100px;
    font-family: "Raleway", sans-serif;
    font-optical-sizing: auto;
    font-weight: 900;
}

.content {
    position: relative;
    z-index: 1;
    color: white;
    text-align: center;
    padding: 100px;
    display: flex;
    flex-direction: column;
    align-items: center;
    
}
.links {
    margin-bottom: 15px;
    width: 400px;
    height: 75px;
    border-radius: 16px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between; /* Distribute space evenly */
    padding: 0 15px; /* Add inner spacing */
    gap: 10px;
    color: white;
    font-family: "Raleway", sans-serif;
}
.links img {
    height: 40px;
    flex-shrink: 0; /* Prevent shrinking */
}

.links h2 {
    margin: 0;
    font-size: 24px;
    color: rgba(255, 255, 255, 0.85);
    flex-grow: 1; /* Fill available space */
    text-align: left;
}

.links button {
    padding: 10px 20px;
    font-size: 1rem;
    border: none;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.15);
    color: white;
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    cursor: pointer;
    transition: all 0.3s ease;
    flex-shrink: 0; /* Prevent shrinking */
}
/* Hover effect */
.links button:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: scale(1.05);
}
audio{
  margin-top: auto; /* Push it to the bottom */
  padding: 10px;
  text-align: center;
  color: white;
  z-index: 2;
    padding: 10px;
  border-radius: 15px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  color: white;
}
.padd{
    padding: 10px;
}
@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.links {
  animation: slideUp 0.6s ease-out forwards;
  opacity: 0; /* ensure animation starts from 0 */
}
.links:nth-child(2) {
  animation-delay: 0.1s;
}
.links:nth-child(3) {
  animation-delay: 0.2s;
}
.links:nth-child(4) {
  animation-delay: 0.3s;
}
.links:nth-child(5) {
  animation-delay: 0.4s;
}
