/* ================== RESET ================== */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

/* ================== NAVBAR ================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: #333333;
    color: white;
    height: 10vh;
    min-height: 70px;
    display: flex;
    align-items: center;
    padding: 0 3%;
    border-bottom: 1px solid black;
    z-index: 9999;
}
.nav-right {
    position: fixed;
    top: 0;
    right: 0;
    color: white;
    min-height: 70px;
    display: flex;
    align-items: center;
    padding: 0 3%;
    justify-content: flex-end;
    z-index: 9999;
}
.navbar .logo {
    height: 6vh;
    max-height: 60px;
    width: auto;
    display: block;
    border: none;
    margin: 0;
}

/* ================== MENU ================== */
ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
    overflow: hidden;
}
ul li {
    float: left;
}
ul li a {
    display: block;
    color: #058fff;
    text-align: center;
    padding: 14px 16px;
    text-decoration: none;
}
.disabled {
    opacity: 0.6;
    cursor: not-allowed;
    pointer-events: none;
}
.navbar a:active {
    background-color: #031528;
}

/* ================== MAIN CONTENT ================== */
main {
    position: fixed;
    top: max(10vh, 70px);
    bottom: max(10vh, 70px);
    left: 0;
    right: 0;
    overflow-y: auto;
    padding: 20px;
}

/* ================== FOOTER ================== */
footer {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: #333333;
    color: #058fff;
    height: 10vh;
    min-height: 70px;
    display: flex;
    align-items: center;
    padding: 0 5%;
    border-top: 1px solid black;
    font-size: 16px;
    z-index: 9999;
}
.footer-text {
    margin: 0;
    flex: 0.8;
    text-align: right;
    color: #1085e4;
}

/* ================== LOGO ================== */
.logo {
    border-radius: 50%;
    border: 3px solid #029afc;
    max-width: 579px;
    max-height: 463px;
    width: 25%;
    margin: 50px;
}