@import url('https://fonts.googleapis.com/css2?family=Inconsolata:wght@400;700&display=swap');

html {
    scroll-behavior: smooth;
}

h1, h2, h3 {
    font-weight: normal;
}

body {
    margin: 0;
    background-color: #000;
    font-family: 'Inconsolata', monospace;
    color: white;
}

.students {
    width: 100%;
}


.banner-container {
    position: relative;
}
.overlay-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 1.5vw;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1vw;
}

.header-banner {
    display: flex;
    justify-content: center;
    align-items: center;
}

nav {
    position: relative;
    background-color: #000;
    padding: 1vw;
    border-bottom: 0.01vw solid #333;
    justify-content: space-between;
    align-items: center;
    display: flex;
}

nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
}

nav ul li a {
    padding-right: 4vw;
    color: white;
    font-size: 1.6vw;;
    margin-left: 0;
    text-decoration: underline;
    text-decoration-color: #00FF00;
}

nav ul li a:hover {
    text-decoration: underline;
}

.iaib {
    margin-left: 6vw;
    width: 4.3vw;
    height: auto;
    transition: filter 0.3s ease;
}
.iaib:hover {
    filter: drop-shadow(0 0 10px white);
}

.bottom-nav {
    width: 100%;
    border-top: 0.015vw solid #00FF00;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    position: static;
    bottom: 0;
    list-style: none;
    padding: 0;
    margin: 0;
    gap: 1vw;
}

.bottom-nav a {
    text-decoration: none;
    display: inline-block;
}

.logo {
    width: 3vw;
    height: auto;
    transition: filter 0.3s ease;
}
.logo:hover {
    filter: drop-shadow(0 0 4px white);
}

.iaib-2 {
    margin: 1vw;
    width: 4vw;
    height: auto;
}

/* phone view stuff*/

.hamburger {
    display: none;
    font-size: 5vw;
    cursor: pointer;
    color: white;
}

#menu-toggle {
    display: none;
}

@media (max-width: 768px) {

    .students {
        height: 85vw;
        object-fit: cover;
    }

    nav {
        flex-direction: row;
        justify-content: space-between;
        padding: 5vw;
        font-size: 2vw;
        z-index: 10;
    }

    .hamburger {
        display: block;
        position: relative;
    }

    .nav-links {
        display: none;
        flex-direction: column;
        width: 100%;
        background-color: #000;
        position: absolute;
        top: 100%;
        left: 0;
        text-align: center;
        padding: 2vw 0;
        gap: 3vw;
    }

    #menu-toggle:checked ~ .nav-links {
        display: flex;
    }

    nav ul li a {
        font-size: 4vw;
        padding: 3vw 0;
    }

    .informatics {
        flex-direction: column;
        gap: 3vw;
        margin: 2vw;
        font-size: 4vw;
    }

    .informatics .ago {
        display: none;
    }

    .overlay-text {
        font-size: 4vw;
        padding: 0 2vw;
    }

    .event_container {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 4vw;
        margin: 2vw;
    }

    .header_2 {
        font-size: 4vw;
    }

    .event-link {
        display: flex;
        justify-content: center;
        width: 100%;
        text-decoration: none;
    }

    .event {
        width: 80%;
        font-size: 6vw;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        text-align: center;
    }

    .green-button {
        font-size: 3vw;
        padding: 2vw;
    }

    .logo {
        width: 8vw;
        transition: filter 0.3s ease;
    }
    .logo:hover {
        filter: drop-shadow(0 0 4px white);
    }

    .iaib {
        width: 11vw;
        transition: filter 0.3s ease;
    }
    .iaib:hover {
        filter: drop-shadow(0 0 4px white);
    }

    .iaib-2 {
        width: 10vw;
    }
}