nav {
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: deeppink;
    font-size: clamp(1.25rem, 3vw, 5rem);
}
nav p {
    font-style: italic;
    filter: blur(4px);
    margin: 0;
}
nav ul {
    list-style: none;
    text-align: center;
    padding: 0;
    border-top: 1px solid;
    
}
nav li {
    border-bottom: 1px solid;
    min-width: 8em;
}
nav a {
    color: currentColor;
    padding: .2em 0 .3em;
    display: block;
    text-decoration: none;
    transition: filter 500ms;
}
nav:has(:hover) a:not(:hover) {
    filter: blur(4px);
}