:root {
    --bg-principal: #1E1E1E;
    --bg-editor: #252526;
    --bg-sidebar: #2D2D2D;
    --bg-barra-de-estado-inactiva: #007ACC;
    --bg-barra-de-estado-activa: #1B1B1B;
    --tx-color-principal: #D4D4D4;
    --tx-color-Comentarios: #6A9955;
    --tx-color-Texto-en-cadenas: #CE9178;
    --tx-color-Palabras-clave: #569CD6;
    --tx-color-Texto-numérico-y-booleanos: #B5CEA8;
    --tx-color-Texto-para-variables-y-funciones: #9CDCFE;
    --tx-color-Texto-para-constantes: #4EC9B0;
    --colores-selección: #264F78;
    --colores-cursor: #AEAFAD;
    --colores-búsqueda: #515C6A;
    --colores-línea-activa: #2C2C2C;
    --Bordes-divisores: #3C3C3C;
    --Iconos-inactivos: #808080;
    --Iconos-activos-resaltados: #FFFFFF;
    --Botones-flotantes: #0E639C;
    --Errores: #F48771;
    --Advertencias: #CCA700;
    --Éxito-Información: #89D185;
    --Links: #3794FF;
}

body {
    background-color: var(--bg-principal);
    color: #d4d4d4;
    font-family: 'Cascadia Code', monospace;
}

.navbar {
    background-color: var(--bg-principal);
}

.hero {
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.hero h1 {
    font-size: 4rem;
    font-weight: bold;
    color: #ffffff;
}

.hero h2 {
    font-size: 1.5rem;
    color: #c586c0;
}

.hero .divider {
    width: 100px;
    height: 4px;
    background-color: #dcdcaa;
    margin: 20px 0;
}

.social-icons a {
    color: #d4d4d4;
    margin: 0 10px;
    font-size: 1.5rem;
}

.scroll-text {
    writing-mode: vertical-rl;
    transform: rotate(180deg);
    color: #d4d4d4;
    position: absolute;
    bottom: 20px;
    right: 20px;
}

.sobremi-seccion {
    color: var(--tx-color-Texto-para-variables-y-funciones);
    padding-top: 10%;
}

.texto-sobremi p {
    color: var(--tx-color-Texto-en-cadenas);
}

.texto-sobremi .llave {
    color: var(--Advertencias);
}

.skills-seccion {
    padding-top: 20px;
    padding-bottom: 20px;
}

footer {
    background-color: var(--bg-editor); /* Fondo del footer */
    color: var(--tx-color-principal); /* Texto claro */
  }
  footer h5 {
    padding-bottom: 5px;
    margin-bottom: 15px;
    color: var(--tx-color-Texto-para-variables-y-funciones); /* Títulos en azul */
  }
  footer a {
    color: var(--tx-color-principal);
  }
  footer a:hover {
    color: var(--Links); /* Efecto hover estilo VS Code */
  }
  footer .bi {
    font-size: 1.2rem;
    vertical-align: middle;
  }

/* // Small devices (landscape phones, 576px and up) */
@media (max-width: 575.98px) {

    .hero h1 {
        font-size: 2.5rem;
        font-weight: bold;
        color: #ffffff;
    }

    .scroll-text {
        writing-mode: horizontal-tb;
        transform: rotate(0deg);
    }

}