:root {
    --primary-color: #fff;
    --font-family: "JetBrains Mono", monospace;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: var(--font-family);
    font-size: 1.5rem;
}

#background {
    background: url(assets/background-wallpaper.jpg) no-repeat center center fixed;
    background-size: cover;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
}

#wrapper {
    margin-top: 0;
    text-align: center;
    color: var(--primary-color);
    font-weight: 800;
    font-style: italic;
}

@media (max-width: 768px) {
    * {
        font-size: 1.3rem;
    }
}

@media (max-width: 480px) {
    * {
        font-size: 1.2rem;
    }
}
