 body, html {
    margin: 0;
    padding: 0;
    overflow: hidden;
    background-color: black;
    height: 100%;
    width: 100%;
}

nav {
    background-color: #FFD700;
    color: #333;
    text-align: center;
    padding: 30px 0;
    box-shadow: 0 2px 5px rgba(0,0,0,0.3);
    width: 90%;
    margin: 0 auto;
    position: relative;
    z-index: 1001;
}

ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: space-around;
}

li {
    display: inline-block;
}

a {
    text-decoration: underline;
    color: #333;
    font-weight: bold;
    transition: color 0.3s ease, text-shadow 0.3s ease;
}

a:hover {
    color: #000;
    text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.5);
}

/* Estilos para la vista móvil */
.menu-icon {
    display: none;
    cursor: pointer;
    font-size: 30px;
    color: #333;
	
}

@media screen and (max-width: 768px) {
    ul {
        flex-direction: column;
        display: none; /* Ocultar el menú por defecto */
    }

    nav.active ul {
        display: flex;
		padding: 10px 0;
    }

    .menu-icon {
        display: block;
        position: absolute;
        top: 10px;
        right: 20px;
    }

    li {
        margin: 10px 0;
    }
}

canvas {
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1;
}

#logo {
    position: fixed;
    top: 40%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1000;
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.7);
}

footer {
    position: fixed;
    bottom: 0;
    width: 100%;
    padding: 20px 0;
    text-align: center;
    z-index: 1000;
    box-shadow: 0 -5px 10px rgba(0, 0, 0, 0.5);
}

.icon-section {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.icon-container {
    width: 100px;
    height: 100px;
    background-color: black;
    border: 2px solid transparent;
    box-shadow: 0 0 10px #FFD700;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: transform 0.3s ease;
}

.icon-container:hover {
    transform: scale(1.1);
}

.icon-container img {
    max-width: 80%;
    max-height: 80%;
    transition: transform 0.3s ease;
}

#music-control {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1002;
    font-size: 30px;
    color: #FFD700;
    cursor: pointer;
    background-color: rgba(0, 0, 0, 0.5);
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.icon-container:hover img {
    transform: scale(1.1);
}
