* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

hr {
    margin: 20px;
}

/* Navbar/Header */

.navbar {
    height: 100px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.2rem;
    position: sticky;
    top: 0;
    z-index: 999;
    font-family: Courier, Courier New, sans, sans-serif;
    box-shadow: 0 6px 20px 0 rgb(0 0 0);
}

.navbar__container {
    display: flex;
    justify-content: space-between;
    height: 80px;
    z-index: 1;
    width: 100%;
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 50px;
}

#navbar__logo {
    display: flex;
    align-items: center;
    text-decoration: none;
}

#navbar__title {
    margin-left: 10px;
}

#navbar__name {
    font-size: 1.7em;
    font-weight: bold;
}

@media screen and (max-width: 960px) {
    .navbar__container {
        display: flex;
        justify-content: space-between;
        height: 80px;
        z-index: 1;
        width: 100%;
        max-width: 1300px;
        padding: 0;
    }

    #navbar__logo {
        padding-left: 25px;
    }
}

/* General Layout Main */

.main {
    padding: 2rem 0;
    font-family: sans-serif;
    position: relative;
}

.main__container {
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    height: 90%;
    z-index: 1;
    width: 100%;
    max-width: 1300px;
    padding: 0 50px;
}

.main__title {
    align-items: center;
    justify-content: center;
    display: flex;
    text-align: center;
}

/* Footer */

footer {
    width: 100%;
    bottom: 0;
}

.footernav {
    background-color: rgba(0,0,0, 0.5);
    height: 100px;
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    font-size: 1.2rem;
    position: sticky;
    top: 0;
    z-index: 900;
    font-family: Courier, Courier New, sans, sans-serif;
}

.footer__menu {
    display: flex;
    align-items: center;
    list-style: none;
    text-align: center;
    color: yellow;
}

.footer__items {
    padding: 0 1rem;
    cursor: default;
}

.footer__links {
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    height: 100%;
}

.footer__links:hover {
    color: yellow;
    transition: all 0.3s ease;
}

.login_form {
    display: flex;
    align-items: center;
    justify-content: center;
    padding-bottom: 20px;
}

@media screen and (max-width: 600px) {
    .footernav {
        height: 175px;
    }

    .footer__menu {
        display: grid;
    }

    .footer__items {
        padding: 3px;
    }
}