.main__nav {
    grid-row: 1 / -1;
    background-color: var(--background-contrast-color);
    position: relative;
    z-index: 1;
}

#ana-title {
    background-image: linear-gradient(to bottom right, #600, #a00, #600);
    box-shadow: inset 0px 0px 7px #000;
    border-radius: 0% 0% 50% 50% / 0% 0% 10% 10%;
    width: var(--nav-width);
    height: var(--nav-width);
    padding: 20px 40px;
}

.ana-title__words {
    position: relative;
    margin: 0;
    font-family: 'Elisabetta';
    font-size: 5.8rem;
    color: #da0;
    text-shadow: 5px 6px 7px #000;
    user-select: none;
}

.main__nav ul {
    margin: 30px 0 0 0;
    padding: 0;
    display: flex;
    flex-direction: column;
}

.nav__item {
    padding: 7px 20px;
    border-bottom: 1px solid #a44;
    color: #fed;
    font-family: sans-serif;
    font-weight: bold;
    text-decoration: none;
    text-shadow: 1px 1px 5px #c99;
    list-style: none;
    cursor: pointer;
    user-select: none;
    transition-property: background-color;
    transition-duration: 100ms;
    transition-timing-function: ease-in-out;
}

.nav__item:hover {
    background-color: #fff4 !important;
}

.nav__item:active {
    background-color: #fff7 !important;
}

@media (max-width: 700px) {
    #ana-title {
        margin: auto;
    }

    .nav__item {
        text-align: center;
    }
}