body{
    margin: 0px;
    background-color: rgb(50, 50, 50);
    font-family: 'Roboto', sans-serif;

    -ms-overflow-style: none; /* for Internet Explorer, Edge */
    scrollbar-width: none; /* for Firefox */
    overflow-y: scroll; 
}  

body::-webkit-scrollbar {
    display: none; /* for Chrome, Safari, and Opera */
}

header{
    margin: 0px;
    padding: 12px 0px 12px 0px;
    background-color: rgb(30, 30, 30);
    box-shadow: 0px 1px 2px rgb(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    justify-content: space-around;
    position: fixed;
    top: 0;
    width: 100%;
}

footer{
    text-align: center;
    margin: 0px;
    padding: 24px 0px 24px 0px;
    background-color: rgb(30, 30, 30);
    box-shadow: 0px -1px 2px rgb(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    justify-content: space-around;
    position: fixed;
    bottom: 0;
    width: 100%;
}

a{
    text-decoration: none;
    cursor: pointer;
    color: white;
}

p{
    margin: 0px;
    color: white;
}

header p{
    font-weight: 500;
    font-size: 24px;
}

footer p{
    font-weight: 400;
}

.header-nav-buttons{
    display: flex;
    justify-content: center;
    align-items: center;
}

.header-nav-button{
    margin-left: 20px;
    background-color: rgb(109, 0, 51);
    padding: 10px;
    border-radius: 10px;
    font-weight: 500;
    font-size: 18px;
    transition: 0.1s;
    min-width: 90px;
    text-align: center;
}
.header-nav-button:hover{
    background-color: rgba(109, 0, 51, 0.8);
}
.header-nav-button:active {
    background-color: rgb(109, 0, 51, 0.6);
}

.logo{
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    text-decoration: none;
}
.logo-image{
    margin: 0px;
    height: 50px;
    margin-right: 10px;

    -webkit-user-select: none;
    -webkit-touch-callout: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.content{
    margin: 74px 10px 67px 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.content .title{
    text-align: center;
    font-size: min(32px, 6vw);
    font-weight: 500;
    margin-top: min(30px, 6vw);
}

.footer-nav-button{
    display: inline-block;
    position: relative;
    margin: 0px 10px 0px 10px;
}

.footer-nav-button::after{
    content: '';
    position: absolute;
    width: 100%;
    transform: scaleX(0);
    height: 2px;
    bottom: 0;
    left: 0;
    margin-bottom: -2px;
    background-color: #ffffff;
    transform-origin: center;
    transition: transform 0.25s ease-out;
}
.footer-nav-button:hover::after{
    transform: scaleX(1);
    transform-origin: center;
}

.pop-up-header{
    display: none;
    align-items: center;
    background: rgb(30, 30, 30);
    z-index: 10;
    flex-direction: column;
    position: fixed;
    top: 0px;
    bottom: 0px;
    left: 0px;
    right: 0px;
}

.pop-up-buttons{
    margin-top: 50px;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.pop-up-buttons a{
    width: 50%;
}

.pop-up-header.active{
    display: flex;
}

.exit-pop-up-button{
    position: absolute;
    right: 0px;
    top: 0px;
    margin-top: 15px;
    margin-right: 5vw;
    cursor: pointer;
    color: white;
    background-color: rgba(109, 0, 51);
    padding: 6px 10px 6px 10px;
    border-radius: 10px;
    transition: 0.1s;
}

.exit-pop-up-button:hover{
    opacity: 0.875;
}

.exit-pop-up-button:active {
    opacity: 0.75;
}

.pop-up-header a{
    margin: min(10px, 2vw);
}

.pop-up-button{
    cursor: pointer;
    color: white;
    background-color: rgba(109, 0, 51);
    padding: 6px 10px 6px 10px;
    border-radius: 10px;
    display: none;
    transition: 0.1s;
}

.pop-up-button:hover{
    opacity: 0.875;
}

.pop-up-button:active {
    opacity: 0.75;
}

header i, .pop-up-header i{
    margin-top: 4px;
    -webkit-user-select: none;
    -webkit-touch-callout: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

@media screen and (max-width: 1000px) {
    header{
        justify-content: space-between;
    }

    .logo{
        margin-left: 5vw;
    }

    .pop-up-button{
        display: block;
        margin-right: 5vw;
    }

    .header-nav-buttons{
        display: none;
    }
}

@media screen and (max-width: 600px) {
    footer{
        flex-direction: column;
    }
    .footer-nav-buttons{
        margin-top: 10px;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    .footer-nav-button{
        padding-top: 10px;
    }
    .content{
        margin-bottom: 10px;
    }
    footer{
        position: relative;
    }
}