:root {
    --primary-color: #00ffff;
    --secondary-color: #ff00ff;
    --accent-color: #ffff00;
    --bg-color: #121212;
    --text-color: #ffffff;
}

.cabecera,
.footer {
    height: 70px;
    display: flex;
    align-items: center;
    background: #1b263b;
    z-index: 1000000000000 !important;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.6);
}

.contenido {
    height: calc(100vh - 150px);
}

.lamina {
    height: calc(100vh - 140px);
    width: 100%;
    opacity: 0.2;
    background:
        radial-gradient(circle at 20% 20%, var(--primary-color) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, var(--secondary-color) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, var(--accent-color) 0%, transparent 30%);
    filter: blur(60px);
    animation: neonPulse 10s infinite alternate;
    z-index: 1;
}


@keyframes neonPulse {
    0% {
        opacity: 0.2;
    }

    50% {
        opacity: 0.3;
    }

    100% {
        opacity: 0.2;
    }
}

.elementos {
    z-index: 2;
}

.cnt-logo {
    width: 250px;
    height: 250px;
    border-radius: 50%;
    background: rgba(9, 2, 47, 0.40);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(14.8px);
    -webkit-backdrop-filter: blur(14.8px);
    border: 1px solid rgba(9, 2, 47, 1);
    z-index: 99999999999999999;
    padding: 15px;
}

.linea {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 2px solid #ececec80;
    overflow: clip;
    box-sizing: border-box;
}

.boton {
    background: transparent;
    border: none;
    display: flex;
    color: #ececec;
}

#caratula {
    width: 65px;
    height: 65px;
    border-radius: 10px;
    background: #121212;
    outline: none !important;
    border: none !important;
    transition: opacity 0.5s ease-in-out;
}

.caratula {
    position: relative;
}

#caratula-new {
    position: absolute;
    opacity: 0;
    width: 65px;
    height: 65px;
    border-radius: 10px;
    background: #121212;
    outline: none !important;
    border: none !important;
    transition: opacity 0.5s ease-in-out;
}


.mon-100 {
    font-family: "Montserrat", sans-serif;
    font-optical-sizing: auto;
    font-weight: 100;
    font-style: normal;
}


.mon-300 {
    font-family: "Montserrat", sans-serif;
    font-optical-sizing: auto;
    font-weight: 300;
    font-style: normal;
}


.social-button-container {
    position: relative;
    width: 70px;
    height: 70px;
}

.main-button,
.social-icon {
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.20);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(12.5px);
    -webkit-backdrop-filter: blur(12.5px);
    border: 2px solid rgba(255, 255, 255, 1);
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    
}

.main-button {
    width: 50px;
    height: 50px;
}

.main-button:hover {
    /* From https://css.glass */
    background: rgba(255, 255, 255, 0.20);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(12.5px);
    -webkit-backdrop-filter: blur(12.5px);
    border: 2px solid rgba(255, 255, 255, 1);
}

.social-icon {
    position: absolute;
    top: 5px;
    left: 5px;
    width: 40px;
    height: 40px;
    opacity: 0;
    transform: scale(0);
    transition: all 0.3s ease;
}

.social-icon:nth-child(2) {
    background-color: #3b599860;
}

/* Facebook */
.social-icon:nth-child(3) {
    background-color: #000e1660;
}

/* Twitter */
.social-icon:nth-child(4) {
    background-color: #e1306c60;
}

/* Instagram */
.social-icon:nth-child(5) {
    background-color: #25D36660;
}

/* WhatsApp */
.social-icon:nth-child(6) {
    background-color: #FF000060;
}

/* YouTube */
.social-icon:nth-child(7) {
    background-color: #1DB95460;
}

/* Spotify */

.social-icon:hover {
    transform: scale(1.1);
}

.fa-icon {
    color: white;
    font-size: 20px;
}

.main-button .fa-icon {
    font-size: 24px;
}

.biblia {
    position: fixed;
    width: 100%;
    height: 100vh;
    z-index: 1000;
    background: #ffff;
}