:root {
    --color1: #3f37c9;
    --color2: #4cc9f0;
    --color3: #b5179e;
    --color4: #ffffff;
}

html {
    overflow: hidden !important;
}

body{
    padding: 0;
    margin: 0;
    background: var(--color1);
    color: var(--color4);
}

.content-general{
    width: 100%;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    position: relative;
    gap: 20px;
}

.img__fondo {
    position: absolute;
    width: 100%;
    height: 100vh;
    top: 0;
    left: 0;
    z-index: 1;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    animation: zoom-in-zoom-out 30s ease infinite;
    object-fit: cover !important;
}

@keyframes zoom-in-zoom-out {
    0% {
        transform: scale(1.2, 1.2);
    }

    50% {
        transform: scale(1.5, 1.5);
    }

    100% {
        transform: scale(1.2, 1.2);
    }
}

.lamina {
     position: absolute;
     width: 100%;
     height: 100vh;
     top: 0;
     left: 0;
/* From https://css.glass */
     background: rgba(22, 16, 128, 0.66);
     box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
     backdrop-filter: blur(6px);
     -webkit-backdrop-filter: blur(6px);
     border: 1px solid rgba(63, 55, 201, 0.38);
     box-sizing: border-box;
}

.cnt__info{
    width: 100%;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    position: absolute;
    z-index: 2;
    flex-direction: column;
    font-family: 'Questrial', sans-serif;
    font-size: 16pt;
}

#img_album {
    border-radius: 10px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.342);
}

.now_playing {
    text-align: center;
}

.boton {
    width: 50px;
    height: 50px;
    font-size: 30pt;
    color: var(--color4);
    border: none;
    display: flex;
    justify-content: center;
    align-items: center;
    background: transparent;
    cursor: pointer;
    transition: 1s;
}
.boton:hover{
    opacity: 0.7;
}

.logo {
    position: absolute;
    top: 20px;
    left: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 25px;
    font-family: 'Questrial', sans-serif;
    font-size: 40pt;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
}

.img_apps{
    position: absolute;
    right: 20px;
    bottom: 50px;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    gap: 15px;
}
@media screen and (max-width: 964px){
    .img_apps{
        align-items: center;
        bottom: 50px;
        left: 0px;
    }

    #img_album{
        width: 180px;
        top: 140px;
    }
}

.redes ul{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    list-style: none;
    padding: 0;
}

.redes ul li a {
    text-decoration: none;
    color: var(--color4);
    transition: 1s;
}

.redes ul li a i {
    width: 35px;
    height: 35px;
    border: 2px solid var(--color4);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.redes ul li a:hover{
    opacity: 0.7;
}

.whatsapp{
    position: absolute;
    bottom: 15px;
    right: 15px;
}

.whatsapp a{
    text-decoration: none;
    color: var(--color4);
}

.whatsapp a i{
    width: 60px;
    height: 60px;
    background: #08b42e;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 18pt;
}

.animacion{
    /*position: absolute;
    top: 20px;*/
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1px;
    list-style: none;
    padding: 0;
}