body {
    font-family: sans-serif;
    background: #aebacc;
}

header {
    background-color: #8d9db5;
    margin: -8px -8px 0 -8px;
    position: relative;
    border-radius: 0px 0px 20px 20px;
    min-height: 70px;
    padding: 14px 18px;
    animation: headerReveal 0.9s ease-out;
    box-shadow: 0 8px 22px rgba(0, 0, 0, 0.1);
    overflow: visible;
}

header img:first-child {
    animation: logoPulse 3s ease-in-out infinite;
    transition: transform 0.25s ease;
}

.cslogo {
    position: absolute;
    right: 18px;
    top: 14px;
    animation: csFloat 2.2s ease-in-out infinite;
    transition: transform 0.25s ease;
}

.cslogo:hover {
    transform: rotate(10deg) scale(1.08);
}

@keyframes headerReveal {
    from {
        opacity: 0;
        transform: translateY(-18px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes csFloat {
    0%,
    100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-6px);
    }
}

@keyframes logoPulse {
    0%,
    100% {
        filter: drop-shadow(0 0 0 rgba(255, 255, 255, 0));
    }
    50% {
        filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.65));
    }
}

.posac {
    margin-top: 10px;
}

main {
    padding: 36px 20px;
}

.files-title {
    margin: 0 auto;
    max-width: 900px;
    text-align: center;
    font-size: clamp(34px, 6vw, 68px);
    font-weight: 800;
    color: #16304d;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    text-shadow: 0 6px 16px rgba(0, 0, 0, 0.18);
    animation: whoReveal 1.1s ease-out;
}

.files-divider {
    width: min(520px, 78%);
    height: 4px;
    margin: 16px auto 0;
    border-radius: 999px;
    background: linear-gradient(90deg, transparent, #274464 22%, #274464 78%, transparent);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    animation: whoReveal 1.1s ease-out;
}

.files-cards {
    margin: 28px auto 0;
    max-width: 980px;
}

.file-card {
    background: #dbe5f1;
    border-radius: 18px;
    padding: 14px;
    box-shadow: 0 10px 22px rgba(0, 0, 0, 0.15);
    animation: whoReveal 0.9s ease-out;
    transition: all 0.25s ease-in-out;
}

.file-name {
    margin: 14px 0 6px;
    font-size: 1.2rem;
    color: #18334f;
}

.file-desc {
    margin: 0;
    font-size: 0.98rem;
    color: #324966;
    line-height: 1.4;
}

.file-button { 
    display: inline-block;
    padding: 8px 16px;
    background: #274464;
    color: #fff;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.25s ease-in-out;
}

.file-button:hover {
    background: #395b82;
    transform: translateY(-2px);
}


.navbutton1 {
    position: absolute;
    top: 33px;
    right: 360px;
    background-color: #7d93ca;
    padding: 7px;
    text-decoration: none;
    border-radius: 10px;
    color: #000000;
    transition: all 0.3s ease-out;
}

.navbutton1:hover {
    background-color: #8aa1f3;
    padding: 10px;
    font-size: 18px;
    text-decoration: none;
    border-radius: 10px;
    color: #000000;
    box-shadow: 0 5px 5px 0 rgb(169, 193, 255);
}

.navbutton2 {
    position: absolute;
    top: 33px;
    right: 250px;
    background-color: #7d93ca;
    padding: 7px;
    text-decoration: none;
    border-radius: 10px;
    color: #000000;
    transition: all 0.3s ease-out;
}

.navbutton2:hover {
    background-color: #8aa1f3;
    padding: 10px;
    font-size: 18px;
    text-decoration: none;
    border-radius: 10px;
    color: #000000;
    box-shadow: 0 5px 5px 0 rgb(169, 193, 255);
}

.navbutton3 {
    position: absolute;
    top: 33px;
    right: 150px;
    background-color: #7d93ca;
    padding: 7px;
    text-decoration: none;
    border-radius: 10px;
    color: #000000;
    transition: all 0.3s ease-out;
}

.navbutton3:hover {
    background-color: #8aa1f3;
    padding: 10px;
    font-size: 18px;
    text-decoration: none;
    border-radius: 10px;
    color: #000000;
    box-shadow: 0 5px 5px 0 rgb(169, 193, 255);
}
