body {
    margin: 0;
    padding: 0;
    font-family: 'Comfortaa', sans-serif;
    color: white;
    overflow-x: hidden;
}

video#bg-video {
    position: fixed; 
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: translate(-50%, -50%);
    z-index: -1; 
}

a {
    color: lightblue;
    cursor: pointer;
}

blockquote {
    margin: 20px 0;
    padding: 10px 20px;
    background-color: rgba(0, 0, 0, 0.7);
    border-left: 5px solid #ccc;
    color: white;
    animation: backgroundColorChange 5s infinite;
}

@keyframes backgroundColorChange {
    0% {
        background-color: rgba(0, 0, 0, 0.7);
    }
    50% {
        background-color: rgba(255, 0, 0, 0.7);
    }
    100% {
        background-color: rgba(0, 0, 0, 0.7);
    }
}

code {
    font-family: monospace;
    padding: 2px 4px;
    border-radius: 4px;
    background-color: #232323; 
    border-left: 5px solid #ccc;
    color: white;
    white-space: pre-wrap; 
    word-wrap: break-word; 
    display: block; 
    padding: 10px; 
    border-radius: 5px; 
    overflow-x: auto; 
}

.content {
    background-color: rgba(0, 0, 0, 0.6);
    padding: 20px;
    border-radius: 10px;
    max-width: 800px;
    margin: 50px auto;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
    position: relative;
    z-index: 1;
    backdrop-filter: blur(7px);
}

.contenedor-imagenes {
    display: flex;
    justify-content: space-around;
    align-items: center;
    gap: 2px;
    width: "80%"; 
}

.contenedor-texto {
    margin-bottom: 20px; 
    display: flex;
    justify-content: space-around;
    align-items: center;
    gap: 2px;
    width: "80%"; 
}

h1, p {
    color: white;
}

#disqus_thread {
    margin-top: 20px;
}
