body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f9f9f9;
}

.headers {
    text-align: center;
    padding: 20px;
    color: #000;
}

.headers h1 {
    font-size: 2.5em;
    margin: 0;
}

.headers p {
    font-size: 1.2em;
}

.gallery {
    padding: 20px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 15px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    background: white;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.gallery-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

.gallery-item .info {
    position: absolute;
    bottom: 0;
    background: rgba(0, 0, 0, 0.521);
    color: white;
    width: 100%;
    text-align: center;
    padding: 10px;
    font-size: 1em;
}

.category-filter {
    text-align: center;
    margin: 20px 0;
}

.category-filter button {
    background-color: #0056b3;
    color: white;
    border: none;
    padding: 10px 20px;
    margin: 5px;
    border-radius: 6px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.category-filter button:hover {
    background-color: #01a001;
}

/*footer {
    text-align: center;
    padding: 15px;
    background: #333;
    color: white;
    margin-top: 20px;
}*/