@import url(https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@200..800&display=swap);

body {
    display: flex;
    flex-direction: column;
    width: 100%;
    align-items: center;
    justify-content: space-between;
    box-sizing: border-box;
    height: auto;
    min-height: 100vh;
    background-color: rgb(0, 0, 0);
    background-repeat: no-repeat;
    background-image: linear-gradient(to right top, #250000, #09001d, #250000, #0c0029);
    font-family: "Plus Jakarta Sans", arial, sans-serif;
    color: white;
    flex: 1;
}

header {
    display: flex;
    background-color: rgba(0, 0, 0, 0.9);
    position: fixed;
    height: 100px;
    width: 100%;
    align-items: center;
    padding: 0 20px;
    box-shadow: 0 20px 25px 10px rgba(0, 0, 0, 0.9);
    justify-content: space-between;
    z-index: 2;
    top: 0;
    left: 0;
    right: 0;
}

.headerLogo {
    display: flex;
    width: 150px;
    height: 100%;
    background-image: url(../images/OFN_LOGO_WHITE.png);
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    transition: all 0.3s;
}

.headerLogo:hover {
    opacity: 0.9;
    scale: 0.95;
}

.options {
    display: flex;
    font-size: 1rem;
    align-items: center;
    position: fixed;
    right: 40px;
    justify-content: space-between;
}

.language {
    font-size: 1.3rem;
    font-weight: 800;
}

a {
    color: white;
    text-decoration: none;
}

.fa-bars {
    font-size: 2.3rem;
    transition: all 0.3s;
}

.fa-bars:hover {
    cursor: pointer;
    scale: 0.95;
    color: brown;
}

main {
    display: flex;
    width: 100%;
    height: auto;
    flex-direction: column;
    align-items: center;
    padding-top: 130px;
    flex: 1;
    padding-left: 30px;
    padding-right: 30px;
    box-sizing: border-box;
}

h1 {
    margin-top: 30px;
    padding: 10px;
    margin-bottom: 30px;
    font-size: clamp(1.5rem, -1.5rem + 11vw, 3.4rem);
    text-align: center;
}

p {
    font-size: clamp(0.8rem, -1.5rem + 3vw, 1.1rem);
    line-height: clamp(1.5rem, -1.5rem + 2vw, 2rem);
}

.description {
    font-size: 2rem;
    margin-top: 20px;
    margin-bottom: 20px;
    text-align: center;
    line-height: 2.5;
}

.sectionTitle {
    font-weight: 600;
    margin-bottom: 30px;
    font-size: clamp(1.5rem, -1.5rem + 5vw, 2rem);
}

.separateSections {
    margin-top: 2vw;
    margin-bottom: 2vw;
    width: 60%;
    height: 2px;
    background-color: #333;
}

.sponsors {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    margin-top: auto;
}

.sponsor {
    width: 200px;
    height: 70px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    transition: all 0.3s;
}

.sponsor:hover {
    opacity: 0.7;
}

li {
    font-size: 0.9rem;
    margin-left: 0px;
}

.map {
    aspect-ratio: 7 / 3;
    width: 50%;
    border-radius: 10px;
}

ul {
    text-align: start;
    list-style-type: disc;
    padding-left: 25px;
}

::-webkit-scrollbar {
    width: 10px;
    height: 10px;
}

::-webkit-scrollbar-thumb {
    background: rgb(95, 0, 0);
    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
    background: rgb(109, 18, 18);
}

::-webkit-scrollbar-track {
    margin-top: 20px;
    margin-right: 10px;
    margin-left: 10px;
    margin-bottom: 20px;
    background: rgb(14, 14, 14);
    border-radius: 10px;
}

@media (min-width: 1400px) {
    main {
        max-width: 1920px;
    }

    .sponsor {
        scale: 1.3;
        margin-left: 30px;
        margin-right: 30px;
    }

    .sponsors {
        margin: 0px;
    }
}

@media (max-width: 1300px) {
    .separateSections {
        width: 70%;
        margin: 30px;
    }

    .map {
        width: 70%;
        aspect-ratio: 7 / 4;
    }
}

@media (max-width: 992px) {
    main {
        width: 100%;
    }

    .map {
        width: 80%;
        aspect-ratio: 3 / 2;
    }

    .sponsor {
        height: 100px;
    }
}

@media (max-width: 670px) {
    header {
        padding: 0 0px;
    }

    .headerLogo {
        height: 70%;
        width: 120px;
    }

    .options {
        right: 20px;
    }

    .map {
        width: 90%;
    }

    .separateSections {
        margin: 20px;
    }
}

@media (max-width: 480px) {
    .description {
        font-size: 1.2rem;
        line-height: 1.8;
    }

    .sectionTitle {
        font-size: 2rem;
    }

    .sponsor {
        flex: 1 1 100px;
        height: 80px;
    }

    .headerLogo {
        width: 100px;
    }

    .fa-bars {
        font-size: 2rem;
    }

    .map {
        width: 90%;
        aspect-ratio: 4 / 3;
    }

    main {
        padding-left: 10px;
        padding-right: 10px;
    }
}


@media (max-height: 400px) {
    header {
        box-shadow: 0 20px 25px 10px rgba(0, 0, 0, 0.5);
        background-color: rgba(0, 0, 0, 0.5);
    }
}