/* 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: darkred;
}

a:hover, a:focus {
    color: red;
}

#header {
    background-image: url(https://i.postimg.cc/VsqLmhkc/orangesmear.jpg);
    font-family: 'Frijole', sans-serif;
    color: #fef4c7;
}

.sidebar {
    background-image: url(https://i.postimg.cc/BQJZ6CjP/Ricppr.gif);
}

.sidebar li {
    border-color: #cc6600;
    background-color: orange;
}

#welcome {
    background-color: #cc6600;
    color: #fef4c7;
}

#two {
    background-color: #fef4c7;
    color: #cc6600;
}

#three {
    background-color: #3b59d2;
    color: #95f7ec;
}

#four {
    background-color: black;
    color: #bda232;
}

#five {
    background-color: #e35a86;
    color: #ebfff6;
}

#six {
    background-image: url(https://i.postimg.cc/7YXHTTzs/weird4.jpg);
    color: #fef4c7;
}


/*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;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
}

h1 {
    margin: 0;
    font-size: 40pt;
    text-align: center;
    font-weight: normal;
}

#header {
    border-bottom: ridge 4px;
    height: 80px;
    margin-left: 220px;
}

.sidebar {
    height: 100%;
    position: fixed;
    left: 0;
    top: 0;
    width: 220px;
    border-right: ridge 4px;
    text-align: center;
    overflow: hidden;
}

#logo {
    border-bottom: 4px ridge;
    height: 150px;
    align-items: center;
    display: flex;
    justify-content: center;
}

#logo img {
    max-width: 100%;
    max-height: 100%;
}

.sidebarinner {
    overflow: auto;
    scrollbar-width: thin;
    height: calc(100% - 150px);
}

.sidebar ul {
    padding: 0;
    list-style-position: inside;
    font-size: 14pt;
}

.sidebar li {
    border-style: outset;
    border-width: 10px;
    padding: 5px;
    width: 85%;
    margin: auto;
}

.main {
    overflow: hidden;
    height: calc(100vh - 80px);
    margin-left: 220px;
}

.page {
    padding: 20px;
    height: 100%;
    overflow: auto;
    margin-bottom: 2000px;
}

