#header {
	background-image: url("../../assets/images/headerBack.png");
	height: 219px;
	width: 100%;
	position: relative;
	z-index: 3;
}

#circleLogo {
    --x-size: 220px;
    height: 100%;
    width: 100%;
    top: 15px;
    position: relative;
    display: grid;
    align-items: center;
    justify-items: center;
    place-items: center;
}

#circleLogo::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: var(--x-size);
    height: var(--x-size);
    transform: translate(-50%, -50%);
    background-image: url("../../assets/images/headerLogo.png");
    background-repeat: no-repeat;
    background-position: center center;
    background-size: contain;
    z-index: 2;
    pointer-events: none; /* keep underlying links clickable */
}

.socialLink {
    height: 40px;
    width: 165px;
    margin: 8px;
    background-color: #252525;
    color: #e6eeff;
    font-family: 'britanic', sans-serif;
    text-decoration: none;
    position: relative;
    display: flex;
    align-items: center;
    font-size: 24px;
    font-weight: 400;
    box-shadow: 0 2px 6px rgba(0,0,0,0.3);
    z-index: 1;
}

.socialLink > div {
    position: absolute;
    top: 50%;
    width: 55px;
    height: 55px;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: 90% auto;
}

.platform {
    padding-left: 35px;
    right: 165px;
    top: 42px;
    text-align: left;
    justify-content: flex-start;
    white-space: nowrap;
}
.platform > div {
    left: 0;
    transform: translate(-50%, -50%);
}

.extra {
    padding-right: 35px;
    left: 175px;
    top: -70px;
    text-align: right;
    justify-content: flex-end;
    white-space: nowrap;
}
.extra > div {
    right: 0;
    transform: translate(50%, -50%);
}

#twitch { background-image: url("../../assets/images/twitchLogo.png"); }
#youtube { background-image: url("../../assets/images/youtubeLogo.png"); }
#patreon { background-image: url("../../assets/images/patreonLogo.png"); }
#discord { background-image: url("../../assets/images/discordLogo.png"); }

#ajax_container {
	width: 100%;
	height: 100%;
	margin-bottom: 100px;
}
