nav.top > ul {
    display: flex;
    justify-content: center;
    align-items: center;
}



nav.top > ul > li > a {
    height: var(--nav-top-height);
    padding-inline: 1rem;
    display: block;
    display: flex;
    align-items: center;
    font-size: 1.2rem;
    transition: letter-spacing 300ms, color 150ms;
}
nav.top > ul > li > a:hover,
nav.top > ul > li > a:focus {
    letter-spacing: 2px;
    color: var(--col-1);
}


nav.top + header {
    height: calc(100vh - var(--nav-top-height));
    padding-bottom: var(--nav-top-height);
}
nav.top + header > h1 {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 15rem;
    font-weight: bold;
    text-transform: uppercase;
    user-select: none;
    animation: scale-up 1500ms forwards;
}

@media screen and (width < 1150px) {
    nav.top + header > h1 {
        font-size: 10rem;
    }
}

@media screen and (width < 750px) {
    nav.top + header > h1 {
        font-size: 6rem;
    }
}

@media screen and (width < 500px) {
    nav.top + header {
        display: none;
    }
}
