.resource__title, .resource__category{
    color: #586269;
    transition: all 0.2s ease-in-out;
    font-weight: 500;
}

.resource__title:hover, .resource__category:hover{
    color: #2d7ff3;
}

.resource__price{
    font-family: Alinur Tumatul;
}

.resource__buy__button {
    background: #000;
    color: azure;
    padding: 10px 20px;
    border-radius: 3px;
    font-weight: 600;
    transition: all 2s ease-in-out;
}

.resource__buy__button:hover {
    background: linear-gradient(to left, #2d7ff3, #24edea);
}

.resource__img__container {
    overflow: hidden;
}

.resource__img {
    transition: all 1s ease-in-out;
}

.resource__img:hover {
    scale: 1.2;
}
