/*  ____________________________________
 * |    _   _             _ _           |
 * |   | |_(_)   _ __ _ _(_) |_ ____    |
 * |   | __| |\ / /_ \ '_| | __|_  /    |
 * |   | |_| | ' / __/ | | | |__/ /_    |
 * |    \__|_|\_/\___|_| |_|\__/___/    |
 * |____________________________________|
 *
 */

/* ----------------------------------------------------------------------------
 * Font
 * ------------------------------------------------------------------------- */
 @import url('https://fonts.googleapis.com/css2?family=Lexend:wght@200&display=swap');

body {
    font-family: 'Lexend', sans-serif;
    font-size: 14px;
}

/* ----------------------------------------------------------------------------
 * Normalize
 * ------------------------------------------------------------------------- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

/* ----------------------------------------------------------------------------
 * Color
 * ------------------------------------------------------------------------- */

:root {
    --textcolor: rgb(255,255,255);
    --maincolor: rgb(0,146,223);
    --dark: rgb(32,36,40);
}

::selection {
    background: transparent;
    color: var(--maincolor);
}

/* ----------------------------------------------------------------------------
 * Layout and Background
 * ------------------------------------------------------------------------- */

body {
    min-height: 100vh;
    width: 100vw;
    background-color: var(--dark);
    color: var(--textcolor);
    font-size: 1.2rem;

    display: flex;
    justify-content: center;
    align-items: center;
}

/* ----------------------------------------------------------------------------
 * Icons
 * ------------------------------------------------------------------------- */

img {
    height: 54px;
    margin: 4px;
}

#links {
    display: flex;
    flex-direction: column;
    border-right: 1px solid var(--maincolor);
    padding: 0 8px;
}

#text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 8px;
}

#core {
    display: grid;
    grid-template-columns: auto auto;
    gap: 6px;
}

h1 {
    font-size: 3.2rem;
}

@media screen and (max-width: 768px) {
    body {
        font-size: 1rem;
    }

    img {
        height: 44px;
    }

    h1 {
        font-size: 2.6rem;
    }
}

@media screen and (max-width: 425px) {
    body {
        font-size: .8rem;
    }

    img {
        height: 34px;
    }

    h1 {
        font-size: 2rem;
    }
}
