/* General styles */
body {
    margin: 0;
    font-family: 'Arial', sans-serif;
    background-color: #f9f9f9;
}

.container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 80vh;
    background-image: url('images/background.png'); /* Your uploaded background */
    background-size: cover;
    background-position: center;
}

/* Message container */
.message-container {
    width: 60%;
    background-color: rgba(255, 255, 255, 0.7);
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
}

#message {
    font-size: 18px;
    color: #333;
    line-height: 1.6;
}

/* Image gallery container */
.gallery-container {
    padding: 20px;
    background-color: white;
}

#gallery {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
}

#gallery img {
    height: auto;
    object-fit: cover;
    border-radius: 10px;
    transition: transform 0.3s ease;
}

#gallery img:hover {
    transform: scale(1.05);
}
