@font-face {
    font-family: departuremono ;
    src: url('./fonts/DepartureMonoNerdFont-Regular.otf');
}

body {
    background-image: url('img/bg.png');
    margin: 0;
    height: 100vh;
    width: 100%;
    position: fixed;
}

* {
    box-sizing: border-box;
}

p {
    font-family: departuremono;
    text-align: center;
    color: white;
}

h1 {
    font-family: departuremono;
    color:#AAAAAA;
    text-align: center;
}

img {
    display: block;
    margin: 0 auto;
}

#container {
    width: 100%;
    height: 100%;
    display: flex;
}

#main {
    background-color: black;
    width: 80%;    
    height: 100vh;
    width: 80%;    
    width: 80%;    
}

#sidebar {
    width: 20%;
    height: 100%;
    background-color: #000000;
}

#sidebar ul {
    display: flex;
    flex-direction: column;
    padding: 0;
    margin: 0;
}

#sidebar p {
    border-style: solid;
    border-color: #AAAAAA;
    color: #ffffff;
    font-family: departuremono;
}

/* navigation section!! */
#info {
    height: 3em;
    background-color: #AAAAAA;
}

#info ul {
    display: flex;
    padding: 0;
    margin: 0;
    list-style-type: none;
    justify-content: space-evenly;
}

#info li {
    padding-top: 1em;
}

/* navigation links*/
#info li a {
    color: #FFFFFF;
    /* navbar text color */
    font-family: departuremono;
    font-weight: 800;
    text-decoration: none;
    /* this removes the underline */
}


footer {
    background-color: #000000;
    color: #000000;
    /* background color for footer */
    width: 100%;
    height: 100%;
    text-align: center;
    /* this centers the footer text */
}

