html {
    overflow-y: scroll;
    user-select: none;
    -webkit-user-select: none;
    background-color: black;
    color: white;
}

body {
    display: flex;
    flex-direction: column;
    margin: 0;
    min-height: 100vh;
}

.regularfont {
    font-family: Sans-Serif;
}

main {
    flex:1;
}

.headerContainer, .headerSmallContainer {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

.header {
    margin: .5vw;
    width: 92vw;
    display: grid;
    grid-template-rows: auto auto;
    grid-template-columns: 60px auto;
    column-gap: 10px;
}

.headername {
    font-weight: 700;
    font-size: 2.5em;
    font-family: "Belleza";
}

.headerlink {
    padding-left: 20px;
    text-decoration: none;
    color: black;
}

.headerlink, .headertitle {
    font-size: 1.25em;
    opacity: .5;
}

.headerlink.activelink, .headerlink:hover, .sociallink:hover {
    opacity: 1;
}

.headerimg {
    grid-row: 1/ span 2;
    grid-column: 1;
    height: 60px;
}

.headertopline {
    grid-column: 2;
    grid-row: 1;
    line-height: .75;
}

.headerbottomline {
    grid-column: 2;
    grid-row: 2;
}

.headertopline, .headerbottomline {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.socialsection {
    display: flex;
}

.sociallink {
    text-decoration: none;
    margin-left: 10px;
    opacity: .5;
    display: flex;
}

.socialicon {
    width: 1.25em;
    height: 1.25em;
}

.steamicon {
    height: 1.25em;
}

footer {
    text-align: center;
    margin-top: 30px;
    margin-bottom: 30px;
}

@media screen and (max-width: 750px) {
    .headername {
        font-size: 1.25em;
    }
    .headerlink {
        padding-left: 10px;
    }
    .headertitle, .headerlink {
        font-size: .75em;
    }
}

@media screen and (min-width: 1665px) {
    .header {
        width: 1532px;
        margin: 8px;
    }
}