:root {
    --main-background-color: #010601;
    --container-background-color: #4b553d;
    --container-font-color: white;
    --header-background-color: black;
    --header-font-color: #f03232;
    --nav-font-color: white;
    --content-font-color: white;
    --content-background-color: black;
    --highlight-color: #f03232;
    --glow-color: black;
}

body {
    width: 100%;
    margin: 0px;
    font-family: monospace;
    background-color: var(--main-background-color);
}

hr {
    width: 90%;
    border: 1px var(--highlight-color) solid;
}

marquee {
    width: 100%;
    background-color: var(--header-background-color);
    position: fixed;
    bottom: 0;
}

#bigkaiman {
    position: fixed;
    left: 0px;
    bottom: 0px;
    z-index: 2;
    height: 30%;
}

#bignikaido {
    position: fixed;
    right: 0px;
    bottom: 0px;
    z-index: 2;
    height: 30%;
}

#content {
    margin: 50px auto 0px auto;
    display: flex;
    border: 1px white solid;
    -webkit-box-shadow:0px 0px 10px 1px var(--glow-color);
    -moz-box-shadow: 0px 0px 10px 1px var(--glow-color);
    box-shadow: 0px 0px 10px 1px var(--glow-color);
    background-color: var(--container-background-color);
    color: var(--container-font-color);
    width: 1300px;
    height: 750px;
    padding: 0px
}

#content h2 {
    font: 20px;
    margin: 0px 20px 10px 20px;
}

.contentSection {
    width: 90%;
    margin: 0px 25px;
    padding-left: 20px;
    border-left: 1px solid white;
}

/*  nav mostly */
#left {
    width: 20%;
}

nav {
    padding-top: 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 200px;
}

nav a {
    padding: 10px;
    font: 20px;
    margin: 5px 0px 0px 20px;
    background-color: black;
    color: var(--nav-font-color);
    text-decoration-line: none;
    text-align: right;
}

nav a:hover, nav a:active {
    text-decoration-line: underline;
    background: linear-gradient(90deg, var(--highlight-color) 0%, var(--highlight-color) 5%, black 5%, black 100%);
}

#selectedPage {
    background: linear-gradient(90deg, white 0%, white 5%, black 5%, black 100%);
}

/* actual content i guess */
#center {
    width: 60%;
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

#maintext {
    height: 100%;
    border: 1px white solid;
    background-color: var(--content-background-color);
    color: var(--content-font-color);
    overflow: auto;
    padding: 20px 0;
}

#footer {
    height: 20%;
    width: 90%;
    margin: auto auto 20px auto;
    border: 1px white solid;
    background-color: var(--content-background-color);
    color: var(--content-font-color);
    text-align: center;
}

/* profile sidebar thingy */
#right {
    width: 20%;
    display: flex;
    flex-direction: column;
    border-left: 1px dashed white;

}

#profilePic {
    margin: 20px auto;
    height: 175px;
    width: 175px;
    border: 1px white solid;
    background: repeating-linear-gradient(0deg, var(--highlight-color), black 1%, var(--highlight-color) 2%);
    -webkit-box-shadow:0px 0px 10px 1px var(--glow-color);
    -moz-box-shadow: 0px 0px 10px 1px var(--glow-color);
    box-shadow: 0px 0px 10px 1px var(--glow-color);

}

#profilePic:hover {
    content: url("./assets/profile2.png");
    background-color: var(--highlight-color);
}

h3 {
    font-size: 12px;
    margin-top: 10px;
}

#siteButton {
    height: 31px;
    width: 88px;
    margin: auto 20px 10px;
}

#siteButtonText {
    width: 80%;
    background-color:#222;
    color: white;
}

.horizontalWrapper {
    display: flex;
    width: 93%;
    border: 1px solid white;
    margin: 25px;
    height: 363px;
}

.rightSideLink {
    text-align: center;
    color: white;
    padding: 10px;
    width: 50%;
    margin: 0px auto;
    background-color: black;
}

.scrollable {
    overflow: auto;
}