body {
    background: rgb(37, 53, 81);
    color: whitesmoke;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}

header nav {
    display: flex;
    gap: 1rem;

    a {
        text-transform: uppercase;
        color: inherit;
        font-weight: 500;
        text-decoration: none;

        align-content: center;

        &:first-child {
            margin-right: auto;

            img {
                max-height: calc(120rem/16);
            }
        }
    }
}
main{
    h1{
        font-size: 4rem;
        text-align: center;
    }
}