/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/

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;
}

/* Global */

:root {
    --grey: #eff0ff;
    --black: #000;
    --dblue: #011128;
    --green: #047462;
    --burple: #4151F8;
    --blue: #0466CD;
    --purple: #5A3E85;
    --red: #C30000;
}

@font-face {
    font-family: "HK Grotesk";
    src: url("HKGrotesk-Black.woff2") format("woff2"),
        url("HKGrotesk-Black.woff") format("woff");
    font-weight: 900;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "HK Grotesk";
    src: url("HKGrotesk-Medium.woff2") format("woff2"),
        url("HKGrotesk-Medium.woff") format("woff");
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

body {
    font-family: "HK Grotesk", Arial, sans-serif;
    font-size: 20px;
    line-height: 180%;
    background: var(--grey);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

.row {margin: 0 0 15px 0;}
.footer {height: 100px;}

h1 {
    font-size: 45px;
    font-weight: 900;
    margin: 40px 0;
}

h1::after {
    display: inline-block;
    width: 30px;
    vertical-align: -15%;
    margin-left: 20px;
    content: url('../icons/wave.svg');
}

h2 {
    font-size: 30px;
    font-weight: 900;
}

p {
    margin-top: 40px;
}

ul {
    margin: 5px 0 0 45px;
    line-height: 180%;
    list-style-type: none;
}

li {
    list-style-image: url('../icons/arrow.svg');
    margin-bottom: 10px;
    padding-left: 10px;
}

.icon::before {
    display: inline-block;
    width: 30px;
    vertical-align: -10%;
}

.i-padleft {margin-left: 5px;}

.i-mail::before {content: url('../icons/mail.svg');}
.i-bsky::before {content: url('../icons/bsky.svg');}
.i-discord::before {content: url('../icons/discord.svg');}
.i-twitch::before {
    width: 25px;
    content: url('../icons/twitch.svg');
}
.i-youtube::before {
    width: 35px;
    content: url('../icons/youtube.svg');
}

a {
    text-decoration: none;
    color: var(--blue);
}

.footer-bar {
    border-bottom: 6px solid;
    padding-top: 17px;
}

.acontextualid {
    display: inline-block;
    width: 222px;
    content: url('../acontextualid.svg');
}

a.i-mail {color: var(--green);}
a.i-bsky {color: var(--blue);}
a.i-discord {color: var(--burple);}
a.i-twitch {color: var(--purple);}
a.i-youtube {color: var(--red);}

a:hover {
    text-decoration: underline;
}