html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
	display: block;
}
body {
	line-height: 1;
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}

/* ------------------------------------------------------------------- */

body {
    background-color: rgb(18, 18, 18);
}

header {
    background-color: #2c2c31;
    width: 96%;
    margin-bottom: 5%;
    padding: 2%;

    display: flex;
    align-items: center;
}
.headertxt {
    font-family: "Bubble Text";
    font-size: 400%;
    color: #515159;

    position: absolute;
    margin-left: 10%;

    transition: 0.25s ease;
}
.headertxt:hover {
    transform: scale(1.08);
    color:#5b5b63;
}
#headersubbar {
    background-color:#222226 ;
    width: auto;
    margin-top: -5%;
    padding: 1%;
}

#logo {
    width: 8%;
    height: 8%;
    margin: -1%;
    margin-left: -0.5%;
    margin-right: auto;

    transition: 0.25s ease;
}
#logo:hover {
    transform: scale(1.15);
}

#menu {
    width: 96%;
    display: flex;
    align-items: center;
    justify-content: right;
}
#menuicon a {
    margin-left: 4%;
    color:#515159;
    text-decoration: none;
    transition: 0.25s ease;
}
#menuicon a:hover {
    color:#5b5b63
}


#scrollbgcontain {
    overflow: hidden;
    margin: 0%;
    padding: 0%;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0; left: 0;
    z-index: -10;
}
#scrollbg {
    background: url("Assets/Faze\ BG.png") repeat;
    width: 2000vw;
    height: 2000vh;
    background-size: 500px;
    animation: bg 60s linear infinite;
}

.section {
    font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
    font-size: 110%;

    margin: 4%;
    padding: 3%;
    
    color:#222226;
    background-color:#515159;

    border-radius: 5px;

    transition: 0.25s ease;
}
.section:hover {
    background-color:#5b5b63;
    color:#2c2c31;
    transform: scale(1.05);
}

.sectionheader {
    font-family: "Bubble Text";
    font-size: 250%;
    text-align: center;

    margin: 2%;
    padding: 2%;

    color:#515159;
    background-color: #222226;

    border-radius: 5px;

    transition: 0.25s ease;
}
.sectionheader:hover {
    background-color: #2c2c31;
    color: #5b5b63;
    transform: scale(1.05);
}

#sectionpart {
    display: grid;
    grid-template-areas: 
    "stext image";
}

#sectiontext { grid-area: stext; }

#sectionimage {
    grid-area: image;
    margin: 3%;
    width: 100%;
    height: 100%;

    transition: 0.25s ease;
}
#sectionimage:hover {
    transform: scale(1.05);
}

@keyframes bg {
    0% {
        transform: translate(0, 0);
    }
    100% {
        transform: translate(0px, -2000px);
    }
}


@font-face {
    font-family: "Bubble Text";
    src: url(ChunkypufflyRegular-drB0l.otf);
}