body {
    background: #eee;
    color: black;
    font-family: 'IBM Plex Sans';
}

@media (prefers-color-scheme: dark) {
    body {
        background: black;
        color: #ddd;
    }

    .logo-img {
        filter: invert(90%);
    }
    
}

@media (prefers-color-scheme: light) {
    body {
        background: #eee;
        color: black;
    }
}

@media (min-device-width:320px) and (max-device-width:500px) {
    html {
        font-size: 200%;
    }
}

@media (min-device-width:500px) and (max-device-width:768px) {
    html {
        font-size: 150%;
    }
}

.greetings {
    font-size: xx-large;
    font-weight: 500;
    font-style: italic;
}

.name {
    font-weight: normal;
    font-size: xxx-large;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.catch-phrase {
    font-style: italic;
    font-weight: light;
}

.logos-container {
    display: flex;
    flex-direction: row;
    align-items: center;
    margin-top: 3rem;
}

.logos-container img {
    font-size: xx-large;
    height: 2rem;
    width: 2rem;
    padding: 0.5rem;
}

.footer {
    position: fixed;
    left: 0;
    bottom: 0;
    width: 100%;
    text-align: center;
}

.usurpation-container {
    max-width: 90%;
    margin: 0 auto;
    text-align: justify;
}

@media (min-device-width:800px) {
    .usurpation-container {
        max-width: 70%;
    }
}
