.boxListContainer {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.boxListContainer > div {
    padding: 10px;
    background-color: var(--white);
    box-shadow: 0px 0px 23px -10px rgba(0,0,0,0.75);
    border-radius: 20px;
    width: 95%;
    margin: auto;
    margin-bottom: 40px;
    margin-top: 40px;
}

.boxListContainer > div > p {
    margin-top: 0;
}

.boxListContainer > div > p:nth-child(odd) {
    color: var(--avocado);
    font-weight: 600;
    margin-bottom: 5px;
}

.boxListContainer > div > p:nth-child(even) {
    margin-bottom: 20px;
}