body, html {
    margin: 0;
    padding: 0;
    height: 100%;
    font-family: Arial, sans-serif;
}

.fondo {
    background-color: #006400;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
}

.titulo-app {
    position: absolute; 
    top: 15%;
    left: 50%; 
    transform: translateX(-50%);
    z-index: 3;
}

.titulo-app img {
    max-width: 270px;
    height: auto;
}

/* Ruleta de Fondo */
.imagen-fondo {
    position: absolute;
    z-index: 1;
    text-align: center;
}

.imagen-fondo img {
    width: 300px;
    height: auto;
    opacity: 0.8;
}

/* Boton de play */
.boton-play {
    margin-top: 1px;
    cursor: pointer;
    position: relative; 
    z-index: 2;
}

.boton-play img {
    width: 80px;
    height: auto;
    transition: transform 0.2s ease;
}

.boton-play img:hover {
    transform: scale(1.3);
}

/*Boton de configuración */
#config-button {
    position: absolute;
    top: 10px;
    right: 15px;
    width: 40px;
    height: 40px;
    background-color: rgb(216, 213, 213);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    transition: opacity 0.3s ease-in-out, transform 0.3s ease-in-out;
}

#config-button:active {
    opacity: 0.5;
    transform: scale(0.85);
    padding-top: 4px;
}

#config-button svg {
    width: 30px;
    height: 30px;
    opacity: 80%;
    transition: 0.2s;
    padding-top: 4px;
}

#config-button:active svg {
    color: rgb(15, 182, 93);
    opacity: 100%;
    transform: translateY(-2px);
}

a {
    text-decoration: none;
    color: inherit;
}

a svg {
    color: inherit;
}
 