/* disclaimer: there was no ai used in the creation of this code, fuck clankers. */

@font-face {
    font-family: MaisonNeue;
    src: url('../Fonts/MaisonNeue-BoldItalic.ttf') format('truetype'), /* main */
         url('../Fonts/Alternate/MaisonNeue-BoldItalic.woff') format('woff'); /* alt */
    font-style: normal;
    font-weight: normal;
    font-display: swap;
}
@font-face {
    font-family: LowerRes;
    src: url('../Fonts/LowerResolution.ttf') format('truetype'), /* main */
         url('../Fonts/Alternate/LowerResolution.woff') format('woff'); /* alt */
    font-style: normal;
    font-weight: normal;
    font-display: swap;
}
a {
text-decoration: none; /* remove underlines (mainly from upper site buttons) */
}
a:hover {
    background-color: yellow;
    color: black !important;
    transition: color 0.3s, background-color 0.4s;
}
a:link {
    color: white;
}
a:disabled {
    color: darkslategray;
}
a:visited {
    color: white;
}
body {
    background-color: black;
}
.mainContent {
    display: grid;
    min-width: 0;
    max-width: 800;
    background-color: darkseagreen;
    margin: 8px;
    grid-auto-columns: auto auto auto;
    font-family:'LowerRes';
    letter-spacing: 0.9px;
    border-style: solid;
    border-width: 3.5px;
    border-color: darkslategray;
    padding: 4px;
    color: black;
}
.mainHeader {
    display: grid;
    height: 160px;
}
.siteName {
    font-family:'MaisonNeue';
    font-size: 65px;
    border-style: solid;
    padding: 4px;
    color: white;
}
.fullSite {
    display: grid;
    grid-auto-columns: auto auto auto;
    max-width: 800px;
    place-items: center;
    min-height: 85vh;
    margin: 0 auto;
    background-color: black;
}
.footer {
    color: white;
}
.hitcounter {
    color: white;
}


