html body{
    width: 100dvw;
    height: 100dvh;
    overflow: hidden;
}

:root{
    --color-blanco: #ffffff;
    --color-verde: #009c7a;
    --color-amarillo: #e6a800;
    --color-rojo: #cd0066;
    --color-azul: #4d70ae;
    --color-gris: #585858;
    --color-sombra: #00000060;
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
    color: var(--color-gris);
}


main {
    background-color: #f7f9fc;
    top: 80px;
    position: absolute;
    width: 100%;
    height: calc(100% - 80px);
    overflow: hidden;
    overflow-y: auto;
}

section {
    overflow: hidden;
    width: 100%;
    opacity: 0;
    height: 100%;
}

p{
    font-size: 20px;
}

h2 {
    font-size: 40px;
}

h1 {
    font-size: 50px;
}

h3{
    font-size: 25px;
    font-weight: bold;
}

li{
    font-size: 20px;
}



.linkHeader {
    font-size: 20px;
}	

#portadaSubtitle{
    font-size: 40px;
}


a{
    font-size: 20px;
}
/* Scrollbar styles */
::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}

::-webkit-scrollbar-track {
    background: var(--color-blanco);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb {
    background: var(--color-rojo);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--color-verde);
}


.aparecer {
    opacity: 1;
    transform: translateY(0);
    animation: aparecer 1s ease forwards;
}

@keyframes aparecer {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
