/* Illegal Astronauts Website */
/*
    MARK: Root
*/
:root {
    /* Colors */
    --primary-light: #f4f9ff;
    --primary-dark: #0d1117;
    --accent-1: #f8ed38;
    --accent-1-hover: #dbd134;
}

/*
    MARK: Fonts
*/
@font-face {
    font-family: "NewComputerModern10";
    src: url("NewCM10-Regular.ttf") format("truetype");
    font-weight: normal;
    font-style: normal;
}

/*
    MARK: General
*/
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    width: 100vw;
    height: 100vh;
    font-family: "NewComputerModern10", serif;
    color: var(--primary-dark);
    background-color: var(--primary-light);
    position: relative;
}

body #content {
    width: 100vw;
    height: 100vh;
    display: flex;
    align-content: center;
    justify-content: center;
    align-items: center;
    text-align: center;
}

body #content h1 {
    margin-bottom: 16px;
    font-size: 4em;
}

body #content p {
    font-size: 2em;
}

::selection {
    background: var(--accent-1);
}

span.highlight {
    background-color: var(--accent-1);
    padding: 0px 4px;
}

#footer {
    width: 100%;
    position: absolute;
    bottom: 8px;
    text-align: center;
}
