:root {
    --red: #FF2F01;
    --grey: #EAECE1;
    --black: #303030;
}

html {
    background-color: var(--grey);
    font-size: 24px;
    margin: 1rem;
    overflow-y: hidden;
    font-family: bodoni-pt-variable, sans-serif;
    font-variation-settings: "opsz" 10, "wght" 400;
    letter-spacing: -0.01em;
    color: var(--black);
}

.content {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

h1 {
    cursor: default;
}

ul {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

a {
    text-decoration: none;
    color: var(--black);
    cursor: pointer;
}


#zoom-letter {
    position: absolute;
    color: var(--black);
    width: max-content;
    height: 35.1vw;
    right: 1rem;
    bottom: 1rem;
    line-height: 1;
    font-size: 50vw;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    z-index: -999;
    opacity: 0;
    line-height: 30.9vw;
    text-align: right;
    padding: 0 2rem;
    transition: opacity 0.3s ease-in-out;
    font-variation-settings: "opsz" 60, "wght" 400;
}

#grid-lines {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 35.1vw;
    border-top: 1px dashed var(--red);
    border-bottom: 1px dashed var(--red);
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
}

.effect:hover {
    opacity: 0.3;
}