body {
    background-color: black;
    color: white;
    font-family: 'Montserrat', Helvetica, sans-serif;
}

nav {
    height: 100%;
    position: fixed;
    width: 200px;
    z-index: 1;
    top: 0;
    left: 0;
    overflow: hidden;
    text-align: center;
    border-right: 2px solid white;
}

.navDiv {
    margin-top: 15px;
    display: flex;
    flex-direction: column;
}

nav p {
    font-size: x-large;
    padding-bottom: 10px;
    color: whitesmoke;
}

nav a {
    padding: 10px;
    margin: 5px 0;
    text-decoration: none;
    color: white;
    border-left: 2px solid rgba(131,0,0,1);
    transition: 0.25s;
}

nav a:hover {
    font-size: larger;
}

#navActive {
    border-left: 2px solid rgb(226, 204, 0);
}

main {
    margin-left: 210px;
}

h1 {
    margin-bottom: 40px;
    color: whitesmoke;
}

a {
    text-decoration-color: aqua;
    text-decoration-line: underline;
    text-decoration-style: wavy;
    color: white;
}