.app-container {
    padding-top: 80px;
    padding-bottom: 80px;
}
@media(max-width: 768px) {
    .container {
        padding-top: 20px;
        padding-bottom: 20px;
    }
}

.cf-item {
    width: 96%;
    height: 310px;
    margin: 8px 0;
    
    border: 1px solid var(--lightgray);
    border-radius: 3px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    cursor: pointer;

    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    transform: translateY(0);
}
@media(max-width: 768px) {
    .cf-item {
        height: 200px;
    }
}

.cf-item img {
    height: 200px;
}
@media(max-width: 768px) {
    .cf-item img {
        height: 100px;
    }
}

.cf-item h4 {
    margin-top: 24px;
    color: var(--darkgray);
    text-align: center;
}

.cf-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 20px rgba(0, 0, 0, 0.2);
}