body {
    margin: 0;
}

#header {
    padding: 0;
    margin: 0;
    background-color: #0A0A0A;
    box-sizing: border-box;
    font-family: Inter, sans-serif;
    border-bottom: grey 1px solid;
    position: sticky;
    top: 0;
    z-index: 1000;
}

li {
    list-style: none;
}

a {
    text-decoration: none;
}

.nav-item img {
    height: 20px;
    margin: 0;
    padding: 0;
}

.nav-link img {
    display: block;
    height: 20px;
    width: auto;
}

.nav-item a {
    color: grey;
}

.navbar {
    min-height: 70px;
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding: 0 24px;
}

.nav-menu {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 60px;
    padding: 0;
    margin: 0;
}

.nav-branding img {
    height: 50px;
}

.nav-link {
    transition: 0.7s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav-link:hover {
    color: red;
}

.hamburger {
    display: none;
    cursor: pointer;
}

.bar {
    display: block;
    width: 25px;
    height: 3px;
    margin: 5px auto;
    transition: all 0.3s ease-in-out;
    background-color: white;
}

.adminpc, .controlpc {
    display: flex;
    background-color: red;
    border-radius: 5px;
    padding: 10px 15px;
    color: white;
    font-size: 0.9rem;
    font-weight: bold;
}

.admingsm, .controlgsm {
    display: none;
}

.controlpc {
    background: none;
    border: grey 1px solid;
}

footer, #sponsors {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 50px;
    width: calc(100% - 100px);
    background-color: #111111;
}

#sponsors {
    justify-content: center;
    gap: 20%;
    border-bottom: grey 1px solid;
    padding: 0;
    width: 100%;
    margin: 0 auto;
    flex-wrap: wrap;
}


footer img, #sponsors img {
    width: 250px;
}

footer div  {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 20px;
}

#sponsors div {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
}

#sponsors p {
    margin: -10px 0;
}

footer p, #sponsors p {
    font-family: Inter, sans-serif;
    color: grey;
}

footer div p {
    color: white;
    font-size: 2.4em;
    font-weight: bold;
    transform: skewX(-15deg);
    text-transform: uppercase;
    margin: 0;
}




@media (max-width: 900px) {
    

    .navbar {
        justify-content: space-between;
    }
    .hamburger {
        display: block;
    }

    .hamburger.active .bar:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .hamburger.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    .nav-menu {
        position: fixed;
        top: -400px;
        left: 0;
        flex-direction: column;
        align-items: flex-start;
        background-color: rgba(10, 10, 10, 0.94);
        width: 100%;
        padding: 40px 24px;
        box-sizing: border-box;
        transition: 0.3s;
        gap: 0;
    }

    .nav-item {
        margin: 13px 0;
        width: 100%;
    }

    .nav-item:first-child {
        position: relative;
        padding-top: 25px;
    }

    .nav-item:first-child::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 40px;
        height: 2px;
        background-color: grey;
    }

    .nav-menu.active {
        top: 55px;
    }

    .adminpc, .controlpc {
        display: none;
    }

    .admingsm, .controlgsm {
        display: block;
        position: relative;
        padding-top: 25px;
        margin-top: 10px;
    }

    .admingsm::before, .controlgsm::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 40px;
        height: 2px;
        background-color: grey;
    }


    .admin-btn {
        color: white;
        font-weight: bold;
        display: flex;
        align-items: center;
        gap: 8px;
    }

    .admin-btn img {
        height: 20px;
        width: auto;
    }

    footer {
        display: flex;
        flex-direction: column;
        align-items: center;
        width: 100%;
        padding: 50px 0;
    }

    footer div {
        display: flex;
        flex-direction: column;
        align-items: center;
    }


}