body, html {
    margin: 0;
    padding: 0;
    height: 100%;
    font-family: Arial, sans-serif;
}

.background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('/assets/images/bgimg.jpg');
    background-size: cover;
    background-position: center;
    filter: blur(8px);
    z-index: -1;
}

.content {
    padding: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

h1 {
    color: white;
    text-align: center;
    text-shadow: 0 0 10px rgba(0,0,0,0.5);
}

.gallery {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.gallery-item {
    background-color: rgba(255, 255, 255, 0.8);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.gallery-item:hover {
    transform: translateY(-15px);
}

.gallery-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.gallery-content {
    padding: 15px;
    width: 100%;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.gallery-title {
    margin-top: 0;
    color: #333;
    width: 100%;
}

.gallery-description {
    margin-bottom: 15px;
    width: 100%;
}

.gallery-button {
    display: inline-block;
    padding: 8px 16px;
    background-color: #8e35c9;
    color: white;
    text-decoration: none;
    border-radius: 7px;
    transition: background-color 0.3s;
}

.gallery-button:hover {
    background-color: #770b92;
}