* {
    box-sizing: border-box !important;
}

html {
    overflow: hidden;
}

body {
    margin: 0;
    padding: 0;
    font-family: 'Questrial', sans-serif;
}

.container-fluid {
    padding: 0 !important;
}

.animacion {
    z-index: 1;
    overflow: clip !important;
}

.animacion img {
    animation: zoom-in-zoom-out 30s ease infinite;
    box-sizing: border-box !important;
    object-fit: cover !important;
    position: center center !important;
    overflow: clip;
    height: 100vh;
}

.lamina {
    z-index: 2;
    background: rgba(0, 0, 0, 0.61);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(14.4px);
    -webkit-backdrop-filter: blur(14.4px);
    border: 1px solid rgba(0, 0, 0, 0.3);
    flex-direction: column;
    gap:20px;
}

@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);
    }
}

.cnt__caratula {
    width: 180px;
    height: 180px;
    overflow: clip;
    border-radius: 10px;
    background: #100029;
    -webkit-box-shadow: -1px -1px 29px -1px rgba(0, 0, 0, 0.75);
    -moz-box-shadow: -1px -1px 29px -1px rgba(0, 0, 0, 0.75);
    box-shadow: -1px -1px 29px -1px rgba(0, 0, 0, 0.75);    
    transition: 1s;
}

.cnt__player{
   display: flex;
   justify-content: center;
   align-items: center;
}

.btn__player{
    width: 50px;
    height: 50px;
    background: transparent;
    border: none;
    font-size: 36pt;
    color: #ccc;
    transition: 0.5s;
}

.btn__player:hover{
    opacity: 0.5;
}

.cnt__tema{
    padding-top: 15px;
    font-size: 14pt;
    text-align: center;
    padding-left: 20px;
    padding-right: 20px;
}

.redes ul {
    list-style: none;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;  
    padding: 0; 

}

.redes ul li a{
    color: #ccc !important;
    text-decoration: none;
    transition: 0.5s;
}

.redes ul li a:hover{
    opacity: 0.5;
}

.redes ul li a i{
    width: 30px;
    height: 30px;
    border: 2px solid #ccc;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.cnt__logo{
    top: 15px;
    left: 15px;
    display: flex;
    justify-content: flex-start;
    align-items: center;    
    gap: 10px;
    width: 100%;
    transition: 1s;
}

.cnt__logo img{
    border-radius: 50%;
    width: 80px;
    height: 80px;
    transition: 1s;
}

.cnt__logo span{
    font-size: 16pt;
}

.footer{
    bottom: 20px;
}

.btn__floating{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 20px;
    bottom: 15px;
    right: 15px;
    z-index: 100;
}

.btn__floating ul{
    list-style: none;
    padding: 0;    
}

.btn__floating ul li:nth-child(1) a i{
    background-color: #009e20;
}

.btn__floating ul li:nth-child(2) a i{    
    background-color: #009e20;
}

.btn__floating ul li a{
    text-decoration: none;
    color: #fff !important;
    font-size: 14pt;
}

.btn__floating ul li a i{
    width: 40px;
    height: 40px;
    border-radius: 50% !important;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* telegram */

.btn__floating_telegram{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 20px;
    bottom: 15px;
    left: 15px;
    z-index: 100;
}

.btn__floating_telegram ul{
    list-style: none;
    padding: 0;    
}

.btn__floating_telegram ul li:nth-child(1) a i{
    background-color: #0088cc;
}

.btn__floating_telegram ul li:nth-child(2) a i{    
    background-color: #0088cc;
}

.btn__floating_telegram ul li a{
    text-decoration: none;
    color: #fff !important;
    font-size: 14pt;
}

.btn__floating_telegram ul li a i{
    width: 40px;
    height: 40px;
    border-radius: 50% !important;
    display: flex;
    justify-content: center;
    align-items: center;
}


.contenido{
    height: 300px;
    max-height: 300px;
    overflow-y: auto;
}

.cnt__info{
    gap: 8px !important;
}

.cnt__info i{
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #7e7e7e;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 14pt;
}

.msj{
    padding: 15px 10px 15px 10px;
}

.cnt__fecha{
    width: 100%;
    text-align: right;
    font-size: 9pt;
    color: #d485ec;
}
@media screen and (max-width: 964px) {
    .cnt__logo{
        justify-content: center;
        left: 0;
    }

    .cnt__logo img{
        width: 60px;
        height: 60px;
    }

    .cnt__caratula {
        width: 150px;
        height: 150px;
    }
}