@import url('https://fonts.googleapis.com/css2?family=Italianno&family=Splash&display=swap');

:root {
    --bg-color: black;
    --text-color: white;
}

body {
    margin: 0;
    background: var(--bg-color);
    color: var(--text-color);
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 100dvh;
    font-family: "Italianno", cursive;
    font-weight: 400;
    font-style: normal;
    letter-spacing: 2px;
    text-align: center;
    flex-flow: column;

    p {
        font-size: 6vw;
        margin: auto 1em;
    }

    b {
        font-family: "Splash", cursive;
        font-weight: 400;
        text-transform: uppercase;
        font-size: 4vw;
    }

    a {
        color: currentColor;
    }

    .discord {
        fill: var(--text-color);
        max-width: 4rem;

        path {
            fill: white;
        }
    }

    @media (max-width: 768px){
    .discord {
        max-width: 2rem;
    }
}
}