
body, html {
    margin: 0;
    padding: 0;
    text-transform: uppercase;
    padding-left: 15px;
    overflow: hidden;
}

body::after {
    content: "";
    background-image: url(../../assets/labl.svg);
    background-size: contain;
    background-repeat: no-repeat;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    width: 200px;
    height: 250px;
    mix-blend-mode: difference;
    filter: contrast(100%);
}

ul li {
    font-size: clamp(1.8rem, 5vw, 5rem);
    text-overflow: ellipsis;
    white-space: nowrap;
    font-family: "Nadea";
    display: flex;
    align-items: center;
}

span {
    font-size: clamp(1.8rem, 5vw, 5rem);
    margin-right: 24px;
}

a {
    color: unset;
    text-decoration: none;
}

ul {
    list-style: none;
    padding: 0;
}


@media screen and (min-width: 786px) {
    body::after {
        content: "";
        width: 450px;
        height: 250px;
    }
}