/*
====================================================

    General Styles

====================================================
 */

body {
    overflow: hidden;
    height: 100vh;
    margin: 0;
    padding: 0;
    background: #090E1E !important;

}

#contentWrapper {
    height: 100vh; /* Same height as viewport */
    width: 100vw; /* Same width as viewport */
    overflow: hidden; /* No scrolling inside the wrapper */
    position: fixed; /* Fixed positioned to prevent natural scrolling */
}

/*
====================================================

    Navigation Bar

====================================================
 */


.nav-bar {
    list-style-type: none;
    padding: 0;
    display: flex; /* Display as flexbox */
    justify-content: space-around; /* Space around each item for equal spacing */
    flex-direction: row; /* Set items in a row */
    margin-top: 25px;
    margin-left: 40px;
    margin-right: 40px;
}

.nav-bar li {
    flex: 1; /* Make each list item take up equal space */
    font-family: Montserrat;
    font-weight: 200;
    font-size: 16pt;
    padding: 10px;
}

.nav-bar li a {
    display: block;
    color: white;
    text-align: center;
    text-decoration: none;
    transition: 0.2s;
}

.nav-bar li a:hover {
    opacity: 1;
}

#specialText {
    color: #8C7BE2;
    font-weight: 800;
    font-size: 30pt;
    transform:translateY(-14px);
    padding-left: 3px;
    transition: 0.2s;
}

.unselected {
    opacity: 0.7;
}


