:root {
    --bg: #2f4e63;
    --text: black;
}

html {
    font-size: 2vw;
    position: relative;
    min-height: 100%;
    overflow-x: hidden;
}

body {
    height: 100%;
    width: 100%;
    height: 100%;
    margin: 0px;
    background-size: cover;
    background-repeat: no-repeat;
    color: var(--text);
    background-color: var(--bg);
}

ul {
    padding-left: 3em;
    list-style-type: disc;
}

button:hover {
    opacity: 0.8;
}

.sidebar-current {
    border-top-left-radius: 15px;
    border-bottom-left-radius: 15px;
    background-color: var(--bg);
}

#sideBar {
    margin: 1.5%;
    width: 25%;
    position: fixed;
    height: 96%;
    z-index: 1;
    background-color: #18283b;
    color: #a4abb4;
    padding: 0px;
    border-radius: 15px;
}

#sideBar-title {
    font-size: 4vw;
    margin: 5%;
    text-align: center;
}

#sideBar-list {
    font-size: 2vw;
    list-style-type: none;
    padding-left: 7%;
    margin: 0px;
}
.sideBar-item{
    padding-top: 7%;
    padding-bottom: 7%;
}

.container {
    position: absolute;
    left: 25%;
    width: 75%;
    padding-bottom: 40px;
}

.Info-Container {
    width: 50vw;
    background-color: #d0cbcb;
    margin: 2% auto;
    padding: 2%;
    box-shadow: 12px 12px 5px var(--text);
    border-radius: 5px;
}

#title {
    width: 15vw;
    text-align: center;
    font-size: 2.5vw;
}

.hidden {
    display: none;
}

@media (max-width: 750px) {
    html {
        font-size: 3.5vw;
    }
    .container {
        position: absolute;
        left: 0%;
        width: 100%;
    }
    .Info-Container {
        width: 75vw;
        margin: 4% auto;
    }
    #title {
        width: 30vw;
        font-size: 7vw;
    }
}