* {
    margin: 0;
    color: white;
    max-width: 100vw;
}

.top-bar {
    display: grid;
    grid-auto-flow: column;
    grid-template-columns: 1fr 1fr;
    background: linear-gradient(to bottom right,  rgb(76, 8, 139), black);
    align-items: center;
    justify-items: center;
}

.branding-div {
    display: grid;
    grid-auto-flow: column;
    height: 100%;
    justify-content: center;
    align-items: center;
    gap: 5%;
}

.title {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.8rem;
}

.navigation {
    display: grid;
    grid-auto-flow: column;
    height: 100%;
    gap: 1vw;
    align-items: center;
    justify-items: center;
}

.navigation-buttons {
    height: 40%;
    width: 100%;

    color: black;

    border: solid;
    border-width: 2px;
    border-color: black;
    border-radius: 4px;

}

.logo {
    max-width: 5vw;
}

.mobile-nav {
    display: none;
}

#mobile-nav-panel {
    display: none;
}

.hamburger-text {
    display: none
}




.main-page {
    margin: 0;
    min-height: 90vh;
    background: linear-gradient(
        135deg,
        black 0%,
        black 60%,
        purple 100%
    );
}

.section {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    background: inherit;
}




@media (max-width: 1024px) {
    .top-bar {
        max-height: 8vh;
        padding: 0;
        gap: 0;
        margin: 0;
        overflow: hidden;
        align-items: center;
        justify-content: center;
    }

    .branding-div {
        display: grid;
        align-items: center;
        justify-content: center;
        height: 8vh;
        margin: 0;
        padding: 0;
    }

    .title {
        font-size: 2.5rem;
    }

    .logo {
        width: auto;
        display: block;
    }



    .mobile-nav {
        display: flex;
        flex-direction: column;
        background: transparent;
        border: none;
        padding: 0;
        justify-content: center;
        justify-self: right;
        align-items: center;
        gap: 0;
        margin-top: 1vh;
        margin-bottom: 1vh;
        margin-right: 5vw;
        width: fit-content;
        height: 6vh;
    }

    .hamburger-text {
        display: block;
        color: black;
        background-color: white;
        font-size: 5rem;
        margin: 7%;
        height: 0.2vh;
        width: 5vw;
        align-self: center;
    }

    .navigation-buttons {
        display: none;
    }

    .navigation {
        display: none;
    }

    #mobile-nav-panel {
        display: grid;
        grid-template-rows: 1fr 1fr 1fr 1fr;
        grid-auto-flow: row;
        justify-self: right;
        margin: 0;
        margin-right: -15vw;
        position: fixed;
        z-index: 1000;
        width: 40vw;
        height: 20vh;
    }

    .mobile-nav-buttons {
        border-color: black;
        color: black;
        border: solid;
        border-width: 8px;
        border-radius: 4px;
        background-color: white;
        text-align: center;
        font-size: 3rem;
    }
}