/*      Site Colors         */
:root {
    --backgroundColor: #00001a;
    --fontColor: #dedede;
    --placeholderColor: #6b6b6b;
}

html, body {
    background: var(--backgroundColor);
    color: var(--fontColor);

    font-family: "Inter", sans-serif;
    font-display: swap;
    font-weight: normal;

    background-image: url("stars.svg");
    background-repeat: no-repeat;
    background-size: cover;

    min-height: 100%;
    height: 100%;

    margin: 0;
    padding: 0;
}


#splash_page {
    background-image: url("logo.svg");
    background-repeat: no-repeat;
    background-position: 100% 5%;
    background-size: 20rem;

    display: flex;

    justify-content: center;
    align-items: center;
    flex-direction: column;

    height: 100%;
}

#heading_main {
    font-weight: bold;
    font-size: 3rem;
    text-align: center;
}
#more_info {
    color: var(--placeholderColor);
    font-size: 2rem;
}
