body {
    margin: 0;
    padding: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

#main-container {
    font-family: 'Comfortaa', sans-serif;
    height: 100vh;
    width: 100vw;
    position: relative;
    overflow: hidden;
    display: flex;        /* Flexbox added */
    justify-content: center;  /* Center children horizontally */
    align-items: center;  /* Center children vertically */
}



#main-container #headphone-notice {
    position: absolute;
    top: 0; /* Adjusted to start at the top edge */
    left: 50%;
    text-align: center;
    width: 100%;
    font-size: 2em;
   /* background-color: rgba(0, 0, 200, 1); */
    color: blue;
    padding: 10px 20px;
    border-radius: 5px;
    transform: translateX(-50%); /* Adjusted for horizontal centering only */
    mix-blend-mode: overlay;
    opacity: 80%;
    
}


#background-video {
    position: absolute;  /* Fixed position */
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    min-height: 100%;
    min-width:100%;
    width: auto;
    height: auto;
    z-index: -100;    /* Behind all content */
    background-size: cover;
    overflow: hidden;
    mix-blend-mode: multiply;
}


.button-container {
    position: absolute;
    top: 50vh;
    left: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    z-index: 1001;
    transform: translate(-50%, -50%);
    opacity: 80%;
}

.svg-button {
    cursor: pointer;
    margin: 2vh;
    width: 50vw;
    height: 50vw;
    max-width: 50vh;
    max-height: 50vh;
    border-radius: 50%;
    opacity: 90%;
    background-color: rgba(0, 0, 255, 1); /* This might still be overridden by inline styles */
    display: flex;
    justify-content: center;
    align-items: center;
    color: rgba(0, 0, 255, 1); /* Changed to blue */
    font-size: 15vh;
    font-weight: normal; /* Changed to a valid value */
    text-transform: uppercase;
    animation: floatingAnimation 9s ease-in-out infinite;
  
}

@keyframes floatingAnimation {
    0%,
    100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-20px);
    }
}

.selected {
    animation: none;
    opacity: 1;
    transition: opacity 10s ease-out;
}

.fade-out {
    opacity: 0;
    transition: opacity 10s ease-out;
    pointer-events: none;
}

.texture-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('https://meltingworld.iramelkonyan.com/dust.png') repeat;
    z-index: 1;
    opacity: 100%;
    mix-blend-mode: screen ;
}

.text-button {
    position: absolute;
    bottom: 10px;
    left: 10px;
    padding: 10px 20px;
    background-color: rgba(255, 255, 255, 0.7);
    cursor: pointer;
    z-index: 1002;
}

.info-page {
    display: none;
    position: absolute;  /* Changed back to absolute */
    top: 50%;            /* Centering adjustments */
    left: 50%;
    transform: translate(-50%, -50%);
    max-width: 90%;      /* Set a maximum width */
    max-height: 90%;     /* Set a maximum height */
    z-index: 1003;
    padding: 20px;
    font-family: 'Comfortaa', sans-serif;
    font-size: 18px;
    overflow-y: auto;    /* Allow scrolling if content overflows */
    border-radius: 15px; /* Optional: adds rounded corners */
}



.info-content {
    padding: 30px;
    overflow-y: auto;
    
}

.close-button {
    position: absolute;
   top: 10px;
    right: 10px;
    padding: 10px 20px;
    background-color: rgba(255, 255, 255, 0.7);
    cursor: pointer;
}



@media (max-width: 768px) {
    .svg-button {
        width: 50vw;
        height: 50vw;
    }
}

@media (orientation: landscape) {
    .button-container {
        flex-direction: row;
    }
}
