body {
    background-image: url("bluebricks.png");
    background-color: #284EA6;
    color: white;
    image-rendering: pixelated;
    font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
    margin: 0;
    padding: 0;
    /* Why the FUCK does css never do what i tell it to do? why does something always have to be wrong and i need to find a fix for it? */
}
#main {
    width: 60%;
    height: calc(90% - 20px);
    background-color: #151e46; /* light alternative: #5e71c7 */
    position: absolute;
    bottom: 0px;
    top: 25px;
    transform: translate(-50%);
    left: 50%;
    right: 50%;
    max-width: 1152px;
    min-width: 550px;
    padding: 0%;
    padding-bottom: 50px;
    overflow-x: none;
    overflow-y: auto;
    border: 1px solid white;
}
#header {
    width: auto;
    height: 150px;
    max-height: none;
    background-image: url("header.png");
    background-position: center;
    text-align: center;
}
#linkholder{
    text-align: center;
    padding-top: 4px;
    padding-bottom: 4px;
    background-color: #213f86;
    width: 100%;
    height: fit-content;
}
a{
    color: white;
}
a:visited{
    color: white;
}
.link{
    padding-top: 1px;
    padding-bottom: 1px;
    display: inline-block;
    margin-right: 20px;
    background-color: #ffe9a8;
    a{
        font-size: 20px;
        margin: 2px;
        color: #151e46;
        text-decoration: none;
    }
    a:visited{
        color: #151e46
    }
    /* pretty cool that you can do it like this */
}
#footer {
    box-sizing: border-box;
    position: fixed;
    bottom: 0px;
    background-color: #0a0f22;
    color: #5e71c7;
    width: 100%;
    height: 20px;
    font-size: 14px;
    text-align: center;
}


/* getting all this shit to work was extremely painful. css is extremely fucking stupid. */
/* shoutout w3schools and chatgpt */
/* shoutout kodya too for helping with the header */