/* General Card Styles */
.card {
    width: 250px;
    display: flex;
    flex-direction: column;
    margin: 0 10px;
    text-decoration: none;
    color: inherit;
    border-radius: 4px;
    border: rgba(0, 0, 0, 0.2) 0.5px solid;
    box-shadow: 0 10px 10px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    margin-bottom: 50px;
}

@media (min-width: 1500px) {
    .card {
        width: 300px;
    }
}
