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

body {
    background-image: linear-gradient(0deg, #316CFF, #2c4da1);
    background-repeat: no-repeat;
    background-size: contain;
    height: 100%;
    margin: 0;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

.container {
    max-width: 1000px;
    min-width: 500px;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-around;
    margin-left: auto;
    margin-right: auto;
}

nav {
    width: 100%;
    height: 100px;
    display: flex;
    align-items: center;
    font-family: "Dongle", sans-serif;
    font-weight: 400;
    font-style: normal;
    gap:30px;
    #logo {
        height: 50px;
    }
    .navbuttons {
        display: flex;
        flex-grow: 2;
        height: 100%;
        width: 90%;
        font-size: 24px;
        align-items: center;
        gap:30px;
        a {
            display: flex;
            flex-direction: column;
            height:50px;
            text-decoration: none;
            color: white;
            .nav_sel {
                width: 100%;
                height: 5px;
                border-radius: 1000px;
                background-color: #FFF562;
                position: relative;
                top:2.5px;
                margin-top: -2.5px;
            }
        }
    }

    .navbuttons2 {
        display: flex;
        flex-grow: 2;
        height: 100%;
        width: 90%;
        font-size: 24px;
        align-items: center;
        gap:30px;
        a {
            display: flex;
            flex-direction: column;
            text-decoration: none;
            color: white;
        }
    }
}

#main {
    width: 100%;
    min-height: calc(100vh - 130px);
    font-family: "Dongle", sans-serif;
    font-weight: 400;
    font-style: normal;
    margin-left: auto;
    margin-right: auto;
    margin-top: auto;
    background-color: #2B2B33;
    color:white;
    font-size: xx-large;
    padding-top: 25px;
    display: flex;
    flex-direction: column;
    border-radius: 25px 25px 0px 0px;
    #content {
        
        flex-grow: 2;
    }
    #content * {
        margin-left: 10px;
        margin-right: 10px;
    }
}

#footer {
    height: 30px;
    text-align: center;
    font-size: 20px;
}

center {
    text-align: center;
}