/* General Styles */
body {
    font-family: Arial, sans-serif;
}

/* Magazine Container */
.magazine {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    padding: 20px;
    justify-content: center;
}

/* Card Styles */
.card {
    width: 300px;
    border: 1px solid #ccc;
    border-radius: 5px;
    overflow: hidden;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    cursor: pointer;
}

.card-body {
    padding: 15px;
}

.card-body h3 {
    margin: 0;
    font-size: 1.2rem;
    color: #333;
}

.card-body p {
    margin: 5px 0;
    color: #666;
}

/* Filters Section */
.filters {
    text-align: center;
    margin: 20px;
}

.filters input, .filters select {
    padding: 5px;
    margin: 5px;
}

/* Sort Options */
.sort-options {
    text-align: center;
    margin: 20px;
}
