.difficulties {
    display: flex;
    flex-direction: row;
    margin: auto 0 auto;
    justify-content: center;
    gap: 30px;
}

.difficulty {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;

}

.difficulty .levels {
    display: flex;
    flex-direction: row;
    gap: 4px;
}

.level {
    display: flex;
    align-items: center;
    cursor: pointer;
    transition: .2s;
    transform: scale(1);
}

.level:hover {
    transform: scale(1.05);
}

.difficulty span {
    user-select: none;
    color: rgba(0, 0, 0, 0.3);
    font-weight: 600;
}