.letters {
    min-height: 100vh;
    height: auto;
    width: 100%;
}

.letters .letter {
    padding: 0;
}

.letter {
    width: 100%;
    font-family: 'Anton', sans-serif;
    font-size: 80vh;
    font-weight: 900;
    line-height: 100vh;
    text-align: center;
    background-size: 150%;
    color: white;
    opacity: 0.5;
    cursor: pointer;
    transition: all 0.2s ease-in-out;
}

.letter:hover {
    font-size: 81vh;
    transition: all 0.2s ease-in-out;
}

.counters-wrapper {
    padding: 20px;
}

.counters {
    background-color: white;
    border: 2px solid lightgray;
    border-radius: 42px;
    padding: 20px;
    padding-top: 40px;
    padding-bottom: 40px;
    margin: 20px;
    width: 100%;
}

.counter {
    margin-bottom: 40px;
    text-align: center;
    background: -moz-linear-gradient(90deg, rgba(255,231,15,1) 0%, rgba(255,105,180,1) 100%);
    background: -webkit-linear-gradient(90deg, rgba(255,231,15,1) 0%, rgba(255,105,180,1) 100%);
    background: linear-gradient(90deg, rgba(255,231,15,1) 0%, rgba(255,105,180,1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#ffe70f",endColorstr="#ff69b4",GradientType=1);
    -webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	-moz-background-clip: text;
	-moz-text-fill-color: transparent;
	-ms-background-clip: text;
	-ms-text-fill-color: transparent;
	background-clip: text;
    color: transparent;
    text-shadow: 0 0 transparent;
}

.counter:last-child {
    margin-bottom: 0;
}

.counter .number .number-text {
    font-family: 'Roboto';
    font-size: 48px;
    font-weight: 900;
    line-height: 48px;
}

.counter .text {
    font-family: 'Bainsley';
    font-size: 36px;
    font-weight: 500;
    line-height: 42px;
}

.sticker {
    width: 250px;
    margin-top: 8px;
    margin-bottom: 8px;
}

@media (min-width: 576px) {

}

@media (min-width: 768px) { 
    .letter { 
        width: auto;
        font-size: 25vw;
        font-weight: 100;
        line-height: 25vw;
        margin-right: 20px;
    }

    .letter:last-child {
        margin-right: 0;
    }

    .counters-wrapper {
        padding: 0;
    }

    .counters {
        width: auto;
    }

    .counters .counter {
        margin-bottom: 0;
        padding: 20px;
        height: 100%;
        border-spacing: 30px 0;
        border-collapse: separate !important;
    }

    .counter .number {
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .counter .number-text {
        font-size: 42px;
        font-weight: 900;
    }

    .counter .number span:first-child {
        margin-right: 8px;
    }

    .counter .text {
        font-size: 28px;
        line-height: 32px;
    }

    .sticker {
        width: 150px;
    }
}

@media (min-width: 992px) { 
    
}

@media (min-width: 1200px) { 
    
}

@media (min-width: 1400px) { 
    
}