:root {
    /* (parts of) SSv5b2 color palette - you can use and modify with or without
    attribution, UNLESS you are specifically distributing the palette as
    it's own standalone product. */
    
    --black:#0d0f12;
    --grey: #21222c;
    --gray: #999ba7;
    --white:#ffffff;

    --c32:  #edc697;

    --c82:  #ade2db;

    --c92:  #93c9da;

    --cA1:  #3c65ba;
    --cA2:  #87b0e1;

    --cB0-tty:  #2d277f8f; /* semi-transparent for faketty */
    --cB0:  #2d277f;
    --cB1:  #433ab9;
    --cB2:  #9a9cda;

    --cC1:  #651eba;
    --cC2:  #9d81d8;

    --cD2:  #a46ed8;

    --cE2:  #da82c4;


    /* Yeah that's right, grey AND gray. My nefarious programming
    know no bounds. */
}

body {
    background-image: url("/res/bg.png");
    background-size: cover;
    background-color: #5362b9; /* Somewhat average BG color as fallback */

    margin: 0;
    height: 100vh;

    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;

}

/* low resolution (on purpose) image fix */
img, body {
    image-rendering: pixelated;
}

/* just for this page anyways */
a {
    color: var(--white);
}

.title_image {
    width: 50%;
}

.welcome_p {
    background-color: var(--cB0-tty);
    padding: 10px;
    backdrop-filter: blur(2px);

    text-align: justify;
    color: var(--white);
    font-family: Lexend, sans-serif;
    font-size: 18px;
    text-shadow:
        2px 0 0px var(--cB0), -2px 0 0px var(--cB0),
        0 2px 0px var(--cB0), 0 -2px 0px var(--cB0), 
        1px 1px var(--cB0), -1px -1px 0px var(--cB0), 
        1px -1px 0px var(--cB0), -1px 1px 0px var(--cB0);
    width: 60%;
}

.best_server_ever {
    width: 30%;
}

.fake_tty {
    font-family: "courier prime", monospace;
    font-weight: 400;
    display: inline-block;;
    padding: 8px;
    margin-top: 8px;
    background-color: var(--cB0-tty);
    color: var(--white);

    border: 4px solid var(--cB0);
    border-radius: 8px;

    backdrop-filter: blur(2px);

}

span {
    font-family: "courier prime", monospace;
}

/* smol devices */
@media (max-width: 768px) {

    .title_image {
        width: 80%;
    }

    .welcome_p {
        width: 90%;
        font-size: 16px;
    }

    .best_server_ever {
        width: 60%;
    }
}

/* beeg devices */
@media (min-width: 1090px) {

    .title_image {
        width: 25%;
    }

    .welcome_p {
        width: 35%;
        font-size: 20px;
    }

    .best_server_ever {
        width: 20%;
    }
}