body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #090b8b;
}
h1 {
    text-align: center;
    padding-left:20px;
    margin-top: 40px;
    color: rgb(235, 232, 232);
    font-weight: bold;
}
h5 {
    text-align: center;
    padding-left:20px;
}
a{
    text-decoration:none;
}
.container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 16px;
    padding: 20px;
    max-width: 1200px;
    margin: 0 auto;
}
.card {
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    text-align: center;
    transition: transform 0.2s;
}
.card:hover {
    transform: scale(1.05);
}
.card-title {
    font-size: 16px;
    font-weight: bold;
    padding: 10px;
    color: #333;
}
.thumb {
    width: 100%;
    aspect-ratio: 3 / 4;
    overflow: hidden;
}
.thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Pagination Styling */
.pagination-container {
    display: flex;
    justify-content: center;
    margin-top: 20px;
}
.page {
    display: inline-block;
    padding: 8px 12px;
    background: #222;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    margin: 0 3px;
    cursor: pointer;
}
.page:hover {
    background: #444;
}
.active {
    background: gray;
}
.dots {
    display: inline-block;
    padding: 8px 12px;
    background: #222;
    color: white;
    border-radius: 5px;
}
@media (max-width: 768px) {
    .container {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
        padding: 10px;
    }

    .card-title {
        font-size: 14px;
    }
}
