:root {
    --main-color: #000000;
    --text-color: #ffffff;
}

body {
    background-color: var(--main-color);
    color: var(--text-color);
    height: 100vh;
    width: 100vw;
    overflow: hidden;

    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

img {
    width: 200px;
}

p {
    font-family: "Merriweather", serif;
    font-size: 2rem;
    line-height: 0px;
}

h1 {
    font-family: "Merriweather", serif;
    font-size: 4rem;
}

@media screen and (max-width: 687px) {
    img {
        width: 150px;
    }

    p {
        font-family: "Merriweather", serif;
        font-size: 1.25rem;
    }

    h1 {
        font-family: "Merriweather", serif;
        font-size: 2.5rem;
    }
}

@media screen and (max-width: 438px) {
    img {
        width: 150px;
    }

    p {
        font-family: "Merriweather", serif;
        font-size: 1rem;
    }

    h1 {
        font-family: "Merriweather", serif;
        font-size: 2rem;
    }
}