@import url(https://fonts.googleapis.com/css2?family=League+Spartan:wght@100..900&display=swap);
/* Page transition effect */
.page-transition {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: #250c37;
    opacity: 1;
    z-index: 9999;
    pointer-events: none;
    transition: opacity 0.5s ease-in-out;
}

body {
    opacity: 0;
    animation: fadeIn 0.5s 0.1s ease-in forwards;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}
:root {
    --primary-color: #250c37;
    --secondary-color: #421862;
    --hover-color: #351252;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    color: white;
    font-family: roboto, system-ui, -apple-system, BlinkMacSystemFont,
        "Segoe UI", Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue",
        sans-serif;
}

body {
    width: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
    background-color: var(--primary-color);
}

.content {
    padding: 2rem;
    height: 100vh;
}

.section-title {
    font-family: "League Spartan", sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: white;
    margin-bottom: 30px;
    text-align: left;
    padding-left: 10px;
    border-left: 5px solid var(--secondary-color);
}

.doc-container {
    display: flex;
    justify-content: flex-start;
    flex-direction: row;
    margin: 1rem;
}

.doc-wrapper {
    display: flex;
    align-items: center;
    text-align: center;
    width: fit-content;
    margin: 10px;
    gap: 5px;
}

.doc-wrapper a {
    font-family: "League Spartan", sans-serif;
    text-decoration: none;
    color: white;
}

.doc-wrapper img {
    width: 80px;
}

.content h2 {
    font-family: "League Spartan", sans-serif;
    font-size: 1.9rem;
    font-weight: 600;
    color: white;
    text-align: left;
    margin-top: 2rem;
    padding-left: 10px;
    border-left: 5px solid var(--secondary-color);
}

