/***** Variables Definitions *****/
:root{
    --navbar-color: rgb(191, 129, 105);
    --base-text-color: white;
}

a {
    text-decoration: none !important;
}

html {
    scroll-behavior: smooth;
    margin: 0;
    padding: 0;
    background: black;
    overscroll-behavior: none;
}

body {
    margin: 0;
    padding: 0;
    height: 100%;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    background-image: url('/static/site_pictures/background.png');
    background-repeat: no-repeat;
    background-attachment: fixed;
}

main {
    background: transparent;
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.top-navbar {
    width: 95%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: fixed;
    min-height: 50px;
    padding-left: 10px;
    padding-right: 10px;
    min-height: 100px;
    border-radius: 20px;
    top: 10px;
    left: 50%;
    transform: translate(-50%);
    z-index: 1000;
    background: var(--navbar-color);
}

.bottom-navbar, footer {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 50px;
    margin: 0;
    background: var(--navbar-color);
}

#copyright {
    font-size: 10px;
    color: var(--base-text-color);
}

.header-text {
    color: var(--base-text-color);
    font-size: 1.5em;
    margin: 5px;
}

.top-navbar-left-side {
    display: flex;
    align-items: center;
    flex-wrap: nowrap;
}

.top-navbar-right-side-large {
    margin-right: 10px;
}

#dropdown-navbar{
    display: none;
}

.dropdown-parent{
    position: relative;
    display: inline-block;
}

.dropdown-container{
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: absolute;
    min-width: 160px;
    right: 0;
    z-index: 1;
    background: rgb(103, 153, 208);
    color: var(--base-text-color);
    border-radius: 10px;
}

#pod-img {
    margin: 0;
    padding: 0;
    height: 50px;
}


/***** Menu dropdown *****/
.top-navbar-right-side-large {
    margin-right: 10px;
}

#dropdown-navbar{
    display: none;
}

.dropdown-parent{
    position: relative;
    display: inline-block;
}

.dropdown-container{
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: absolute;
    min-width: 160px;
    right: 0;
    z-index: 1;
    background: rgb(103, 153, 208);
    color: var(--base-text-color);
    border-radius: 10px;
}

#menu-button:hover{
    cursor: pointer;
}

@media (max-width: 762px){
    #dropdown-navbar{
        display: block;
    }
    #normal-navbar{
        display: none;
    }
}