* {
    box-sizing: border-box;
}

html {
    font-size: 16px;
}

body {
    margin: unset;
}

header {
    display: flex;
    justify-content: center;
    margin: 4rem 0;
}

header img {
    width: auto;
    height: 30vh;
}

article {
    margin: 4rem 8rem;
}

article > h1 {
    margin-bottom: .5rem;
}

article > div {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
}

article p {
    margin-bottom: .5rem;

    font-family: usual, sans-serif;
    font-size: 1.25rem;
    font-weight: bold;
}

article small {
    font-style: italic;
    font-size: 1rem;
}

article h1 small {
    display: inline-block;

    transform: translateY(0.5rem);

    font-size: 1.2rem;
    font-style: italic;
}

h1 {
    font-family: antiquarian-scribe, sans-serif;
    font-size: 3rem;
}

#logo {
    cursor: pointer;
}

@media screen and (max-width: 500px) {
    header img {
        height: 20vh;
    }

    h1 {
        font-size: 1.8rem;
    }

    article {
        margin: 0;
        padding: 2.5rem 5%;
    }

    article > div {
        grid-template-columns: repeat(1, 1fr);
    }
}

@media screen and (min-width: 501px) and (max-width: 750px) {
    h1 {
        font-size: 2rem;
    }
}

@media screen and (min-width: 751px) and (max-width: 1150px) {
    h1 {
        font-size: 2rem;
    }
}

@media screen and (min-width: 1151px) and (max-width: 1800px) {
    h1 {
        font-size: 2.5rem;
    }
}