:root {
    --black: #0E0E0E;
    --dark-grey: #1A1A1A;
    --dark-grey2: #232323;
    --white: #EEEEEE;

    --red: #FE0000;
    --gold: #BB9551;
    --purple: #A100FE;

    --background: var(--black);

    --paragraph: var(--white);
}

@font-face {
    font-family: defqon;
    src: url("../fonts/Defqon-Regular.ttf");
}

@font-face {
    font-family: lato;
    src: url("../fonts/Lato-Regular.ttf");
}

* {
    box-sizing: border-box;
    padding: 0;
    margin: 0;
    text-decoration: none;
    color: var(--paragraph);
    transition: color .5s ease, background-color .5s ease, border .5s ease;
}

html {
    overflow-y: hidden;
}

body {
    background-color: var(--background);
    overflow-y: hidden;

    h1, h2, h3 {
        font-family: defqon;
        font-weight: normal;
    }

    p {
        font-family: lato, monospace;
    }

    header {
        display: flex;
        justify-content: center;
        align-items: center;
        height: 9vh;
        padding: 2.5%;
        background-color: var(--background);
        border-bottom: 1px solid #BB955195;
        /*position: sticky;*/
        /*top: 0;*/
        /*z-index: 10;*/

        p {
            font-size: 2.75em;
            font-family: defqon;
        }
    }

    main {
        height: 91vh;
        overflow-y: auto;

        #content {
            padding: 5% 2.5% 2.5%;
            /*min-height: 100%;*/
        }

        footer {
            padding: 2.5%;
        }
    }
}

/* For screen reader only html tags */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}