/* styling! change backgrounds and colors and such up here. */

u {
    text-decoration: dashed underline 1px; /*this makes underlines a dashed line instead of a solid one. delete this bit if you want them to be normal.*/
}

ul {
    list-style: "➢ "; /*this is the custom bullet point for lists. change or delete it if you prefer!*/
}

a {
    font-weight: bold;
    color: #cd0000;
}

a:hover, a:focus {
    color: red;
}

#header {
    background-color: #989898;
    font-family: 'Germania One', sans-serif;
    color: #000;
}

.sidebar {
    background-color: #b90000;
}

.sidebar li {
    border-color: #000;
    background-color: black;
}

#welcome {
    background-color: #cacaca;
    color: #000;
    font-size: 1.45vw;
}

#two {
    background-color: #cacaca;
    color: #000;
    font-size: 1.3vw;
}

#three {
    background-color: #cacaca;
    color: #000;
    font-size: 1.55vw;
}

#four {
    background-color: #cacaca;
    color: #000;
    font-size: 1.38vw;
}

#five {
    background-color: #cacaca;
    color: #000;
    font-size: 1.4vw;
}

#six {
    background-image: url();
    background-color: #cacaca;
    color: #000;
    font-size: 1.4vw;
}


/*down here is the rest of the code. you can change whatever you want down there as well.*/

* {
    box-sizing: border-box;
}

body,
html {
    margin: 0;
    padding: 0;
    height: 100%;
    width: 100%;
    background-color: black;
    font-family: 'Germania One', sans-serif;
}

h1 {
    margin: 0;
    font-size: 3vw;
    padding-top: 0.5%;
    text-align: center;
    font-weight: normal;
}

h4 {
    margin: 0;
    font-size: 2.5vw;
    padding-left: 50pt;
    font-weight: normal;
}

h3 {
    margin: 0;
    font-size: 3vw;
    padding-top: 1%;
    padding-left: 13%;
    font-weight: normal;
}

h2 {
    margin: 0;
    font-size: 2.5vw;
    padding-bottom: 4pt;
     padding-top: 2pt;
    font-weight: normal;
}

h6 {
    margin: 0;
    font-size: 3vw;
    padding-top: 1%;
    padding-left: 50%;
    font-weight: normal;
}

#header {
    border-bottom: solid black 0.25vw;
    border-top: solid black 0.25vw;
    border-right: solid black 0.3vw;
    border-left: solid black 0.2vw;
    height: 5vw;
    margin-left: 16.5%;
}

.sidebar {
    height: 100%;
    position: fixed;
    left: 0;
    top: 0;
    width: 16.5%;
    padding-bottom: 2vw;
    border-right: solid #f0bd00 0.4vw;
    border-left: solid #f0bd00 0.4vw;
    border-bottom: solid #f0bd00 0.4vw;
    text-align: center;
    overflow: hidden;
}

#logo {
    border-bottom: solid #f0bd00 0.3vw;
    border-top: solid #f0bd00 0.3vw;
    height: 10vw;
    width: 100%;
    align-items: center;
    display: flex;
    justify-content: center;
}

#logo img {
    max-width: 100%;
    max-height: 100%;
}

.sidebarinner {
    overflow: auto;
        font-size: 1.45vw;
    scrollbar-width: thin;
    height: calc(100% - 15%);
    scrollbar-color: grey Black; 
}

.sidebar ul {
    padding: 0;
    list-style-position: inside;
    font-size: 1.45vw;
}

.sidebar li {
    border-style: outset;
    border-width: .5vw;
    padding: .25vw;
    width: 100%;
    margin: 0;
}

.main {
    overflow: hidden;
    height: calc(94vh - 30px);
    margin-left: 16.5%;
}

.page {
    padding-left: 2%;
    padding-right: 7%;

    padding-top: 0px;
    overflow: hidden;
    padding-bottom: 2000px;
    margin-right: 0px;
    border-right: solid 0.35vw;
}

