* {
    cursor: url(), auto;
}

body {
    font-family:'Courier New', Courier, monospace;
    background: black;
    box-sizing: border-box;
    color: white;
    letter-spacing: -1px;
}

p {
    padding-left: 4px;
    padding-right: 4px;
    line-height: 22px;
}

a {
    color: yellow;
    font-weight: 600;
    cursor: pointer;
}

hr {
    width: auto;
    margin: 3px 6px 8px 6px;
    color: black;
    border: solid 1px;
    border-color: #969696 #222222;
}

small {
    text-align: center;
    margin: 2px;
}

container {
    width: 1280px;
    height: 99%;
    display: flex;
    flex-wrap: wrap;
    position: relative;
    top: 0;
    left: 0;
    margin: auto;
    
}

banner {
    background: #2e2e2e;
    width: auto;
    height: 145px;
    border-style: solid;
    border-color: #464646 #161616 #161616 #464646;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
}

sidebar {
    background: #2e2e2e;
    width: 302px;
    height: auto;
    position: sticky;
    top: 8px;
    border-style: solid;
    border-color: #464646 #161616 #161616 #464646;
    margin: auto;
    margin-top: 160px;
    margin-left: 0px;
}

nav {
    color: black;
    background: #696969;
    width: 95%;
    height: fit-content;
    border-style: solid;
    border-color: #161616 #464646 #464646 #161616;
    margin: 5px;
    line-height: 16px; 
}

nav a {
    margin: 0 8px;
}

main {
    background: #2e2e2e;
    width: 955px;
    border-style: solid;
    border-color: #464646 #161616 #161616 #464646;
    margin: auto;
    margin-top: 160px;
    margin-left: 8px;
}

main-content {
    width: 95%;
}

main-content h1, h2, h3 {
    text-align: center;
    margin: 8px;
    text-decoration: underline;
}

main-content p {
    line-height: 24px;
    margin: 6px;
}

main-content hr {
    width: auto;
    margin: 12px 6px;
}

main-content img {
    width: auto;
    display: block;
    margin: 12px auto;
}