:root {
    --primary-light-color: #739cc8;
    --text-color: #ffffffd9;
}

body {
    background-image: url("../img/background.webp");
    background-repeat: no-repeat;
    background-attachment: fixed;
    color: var(--text-color);
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

main {
    position: absolute;
    text-align: center;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    max-width: 700px;
    width: 100%;
}

h1.header-brand {
    font-size: calc(1rem + 4.5vw);
    font-family: "Johnny Torch", sans-serif !important;
    letter-spacing: 4px;
}

span.header-brand-blue {
    color: #5454fc;
}

span.header-brand-white {
    color: #fcfcfc;
}

span.header-brand-gray {
    color: #a8a8a8;
}

h1.header-brand > p {
    font-size: 1.1rem;
    color: var(--text-color);
}

h2 {
    color: white;
    font-weight: bold;
}

article {
    text-align: justify;
    margin: 15px;
}

p > b {
    color: var(--primary-light-color);
}

@media only screen and (max-width: 400px) {
    p {
        font-size: 0.85rem;
    }
    h2 {
        font-size: 0.9rem !important;
    }
    header {
        display: none;
    }
}