.list {
    min-height: 100vh;
    background-color: var(--primary-color);
}

.list h2 {
    font-size: 2rem;
    text-align: center;
    color: #fff;
    font-weight: 300;
    font-family: var(--ff-main);
    letter-spacing: var(--letter-spacing-base);
    padding-bottom: 1.5rem;
}

.wrapper {
    width: 90%;
    display: flex;
    justify-content: center;
    flex-direction: column;
    max-width: 600px;
}

.wrapper li {
    text-align: left;
    color: white;
    font-weight: 300;
    letter-spacing: var(--letter-spacing-base);
    padding: 5px 0;
    font-size: 1.3rem;
    list-style: none;
    position: relative;
}

.wrapper li a:before {
    display: inline-block;
    content: "";
    width: 10px;
    height: 10px;
    background: white;
    border-radius: 5px;
    margin-right: 10px;

}

.wrapper a {
    transition: color 0.12s ease-in-out, opacity 0.12s ease-in-out;
    opacity: 0.7;
    text-align: left;
    color: white;
    font-weight: 300;
    letter-spacing: var(--letter-spacing-base);
    padding: 5px 0;
    font-size: 1.3rem;
    list-style: inside;
}

.wrapper a:hover {
    opacity: 1;
}

.list p.empty-message {
    color: white;
    letter-spacing: 3px;
    padding-bottom: 2rem;
    font-weight: 300;
    line-height: normal;
}