/* General body styling for a calm design */
body {
    font-family: 'Arial', sans-serif;
    background-color: #f0f4f8;
    color: #333;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
}

header {
    width: 100%;
    background-color: #b0c4de;
    padding: 20px;
    text-align: center;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
}

header h1 {
    font-size: 2.5em;
    color: #333;
    margin: 0;
}

.intro {
    text-align: center;
    margin: 40px 0;
    font-size: 1.2em;
    color: #666;
}

.intro p {
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}

.gallery, .videos {
    text-align: center;
    padding: 20px;
    background-color: #ffffff;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
    width: 90%;
    margin-bottom: 40px;
}

.gallery h2, .videos h2 {
    font-size: 2em;
    margin-bottom: 20px;
    color: #333;
}

.image-container, .video-container {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.image-container img {
    width: 200px;
    height: auto;
    border-radius: 8px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.image-container img:hover {
    transform: scale(1.05);
}

.video-container video {
    width: 300px;
    height: auto;
    border-radius: 8px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.video-container video:hover {
    transform: scale(1.05);
}

footer {
    background-color: #b0c4de;
    padding: 10px;
    width: 100%;
    text-align: center;
    font-size: 1em;
    color: #333;
    position: relative;
    bottom: 0;
}

footer p {
    margin: 0;
}

@media (max-width: 768px) {
    .image-container, .video-container {
        flex-direction: column;
    }
}
