/* Cambios hechos para que se vea todo el contenido */
body.page-about {
    display: block !important;
    height: auto !important;
    overflow-y: auto;
}

.page-about .main-wrapper {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.page-about #content-area {
    padding: 80px 20px;
    max-width: 1200px;
    margin: 0 auto;
    color: white;
}

.page-about .site-footer {
    margin-top: auto;
    background-color: rgb(255, 255, 255);
    color: rgb(0, 0, 0);
    padding: 30px 20px;
    width: 100%;
}

.page-about .footer-content,
.page-about .footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
}

/* Inicio de media queries */
@media screen and (max-width: 768px) {
    .container {
        padding: 20px;
        font-size: 1rem;
    }

    h1,
    h2 {
        font-size: 1.2rem;
        text-align: left;
    }

    .footer-column {
        flex-direction: column;
    }

    .footer-content {
        flex-direction: column;
        align-items: flex-start;
    }

    .footer-social a {
        display: block;
        margin-bottom: 10px;
    }
}

/* Fin de media queries */
:root {
    --background: #000000;
    --color: #FAFAFA;
}

html,
body {
    width: 100%;
    height: 100%;
    font-family: Arial;
}

body {
    display: flex;
    justify-content: center;
    align-items: center;
    background: var(--background);
}

.container {
    color: var(--color);
    font-size: 1.2rem;
    display: flex;
    flex-direction: column;
}

.right {
    text-align: right;
    width: 100%;
}

.stack {
    display: grid;
    grid-template-columns: 1fr;
}

.stack span {
    font-weight: bold;
    grid-row-start: 1;
    grid-column-start: 1;
    font-size: 4rem;
    --stack-height: calc(100% / var(--stacks) - 1px);
    --inverse-index: calc(calc(var(--stacks) - 1) - var(--index));
    --clip-top: calc(var(--stack-height) * var(--index));
    --clip-bottom: calc(var(--stack-height) * var(--inverse-index));
    clip-path: inset(var(--clip-top) 0 var(--clip-bottom) 0);
    animation: stack 340ms cubic-bezier(.46,.29,0,1.24) 1 backwards calc(var(--index) * 120ms), glitch 2s ease infinite 2s alternate-reverse;
}

.stack span:nth-child(odd) {
    --glitch-translate: 9px;
}

.stack span:nth-child(even) {
    --glitch-translate: -9px;
}

@keyframes stack {
    0% {
        opacity: 0;
        transform: translateX(-50%);
        text-shadow: -2px 3px 0 red, 2px -3px 0 blue;
    };

    60% {
        opacity: 0.5;
        transform: translateX(50%);
    }

    80% {
        transform: none;
        opacity: 1;
        text-shadow: 2px -3px 0 red, -2px 3px 0 blue;
    }

    100% {
        text-shadow: none;
    }
}

@keyframes glitch {
    0% {
        text-shadow: -2px 3px 0 red, 2px -3px 0 blue;
        transform: translate(var(--glitch-translate));
    }

    2% {
        text-shadow: 2px -3px 0 red, -2px 3px 0 blue;
    }

    4%,
    100% {
        text-shadow: none;
        transform: none;
    }
}

.stack {
    --stacks: 3;
}

.lenguage {
    text-align: right;
    width: 100%;
    margin-top: 7px;
}

.contact {
    text-align: right;
    width: 100%;
    margin-top: 7px;
}

.english {
    color: #ffffff;
}

.spanish {
    color: #ffffff;
}