.stats__spacer {
    padding: 50px 40px;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 120px;
    flex-wrap: wrap;
    background: url('../img/playa.jpg') no-repeat top center fixed;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
}

.stats__item {
    min-height: 90px;
    max-width: 100px;
    padding: 18px;
    border-radius: 13px;
    border: 3px solid var(--primary);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    text-align: center;
    background-color: var(--secondary);
    color: var(--white);
    text-transform: uppercase;
}

.stats__item h3 {
    font-size: 1.6rem;
    margin-bottom: 5px;
}

.stats__item p {
    font-size: 0.85rem;
}

@media screen and (max-width: 1100px) {
    .stats__spacer {
        gap: 40px;
    }
}