/* || RESET */

*,
*::after,
*::before {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

img {
    display: block;
    max-width: 300px;
    height: auto;
    margin: 0.5rem auto;
}

/* || VARIABLES */

:root {
    /* FONTS */
    --FF: 'Courier New', Courier, monospace;
    --FS: 1rem;

    /* COLORS */
    --BGCOLOR: rgb(34, 34, 34);
    --FONT-COLOR: rgb(245, 245, 245);
}

/* || UTILITY CLASSES */

.nowrap {
    white-space: nowrap;
}

.center {
    text-align: center;
}

/* || GENERAL STYLES */

html {
    font-size: var(--FS);
    font-family: var(--FF);
    color: var(--FONT-COLOR);
    background-color: var(--BGCOLOR);
}

/* || MAIN */

main section {
    width: 100vw;
    padding-bottom: 1.6rem;
}

main section h2 span {
    font-size: 2rem;
    font-weight: 200;
    letter-spacing: 2rem;
    padding-left: 2rem;
}

main section h3 {
    font-size: 1.05rem;
    font-weight: 100;
    padding-top: 0.2rem;
    padding-bottom: 2.6rem;
}

/* || HEADER */

header {
    position: sticky;
    top: 0;
    width: 100vw;
    padding: 1.2rem 0;
    border-bottom: 1px solid var(--FONT-COLOR);
    background-color: var(--BGCOLOR);
}

header h1 {
    font-size: 2rem;
    font-weight: 500;
    letter-spacing: 0.1rem;
}

/* || FOOTER */

footer {
    position: fixed;
    bottom: 0;
    width: 100vw;
    padding: 0.8rem 0;
    background-color: var(--BGCOLOR);
    border-top: 1px solid var(--FONT-COLOR);
}