body {
    background-color: #030303;
    color: #fff;
    font-size: clamp(1.5rem, -1.5rem + 8vw, 4rem);
    font-weight: 400;
    font-family: "CormorantGaramond", serif;
    text-transform: lowercase;
    line-height: 100%;
}

svg {
    pointer-events: none;
    user-select: none;
}

h2 {
    font-size: clamp(1.5rem, -1.5rem + 8vw, 4rem);
    text-transform: uppercase;
    font-weight: 400;
}

.content {
    display: flex;
    flex-direction: column;
}

@media screen and (min-width: 768px) {
    .flex {
        display: flex;
        width: 100%;
    }

    .flex div {
        flex: 1;
    }   
}

ul {
    list-style: none;
    padding-left: 60px;
}

.content svg {
    position: fixed;
    width: 100%;
    height: 100vh;
    text-align: center;
    align-content: center;
    margin: 0;
    z-index: 2;
    opacity: 0;
}

small {
    font-size: 18px;
}

a {
    color: #fff;
    font-style: italic;
    text-decoration: none;
}

a:hover {
    color: #ff0000;
}

.content svg.show {
    opacity: 1;
    transition: opacity 0.2s ease-out;
    mix-blend-mode: lighten;
}