/* styleprojct1.css */

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

header {
    background-color: #005f73;
    color: white;
    padding: 20px;
    text-align: center;
}

nav ul {
    list-style-type: none;
    padding: 0;
    margin: 10px 0 0 0;
    display: flex;
    justify-content: center;
    gap: 20px;
}

nav a {
    text-decoration: none;
    color: white;
    font-weight: bold;
}

nav a:hover {
    text-decoration: underline;
}

main {
    padding: 20px;
    max-width: 800px;
    margin: auto;
    background-color: white;
}

h2, h3 {
    color: #0a9396;
}

footer {
    background-color: #005f73;
    color: white;
    text-align: center;
    padding: 10px;
    position: relative;
    bottom: 0;
    margin-top: 40px;
}




.footer-links {
    margin-top: 10px;
    text-align: center;
}

.footer-links a {
    color: white;
    text-decoration: none;
    margin: 0 10px;
    font-weight: bold;
}

.footer-links a:hover {
    text-decoration: underline;
}

.footer-links span {
    margin: 0 5px;
    color: white;
}




.email-link {
    font-size: 0.9em;
    margin-bottom: 5px;
}

.email-link a {
    color: white;
    text-decoration: none;
}

.email-link a:hover {
    text-decoration: underline;
}





.media-gallery {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    margin-top: 10px;
}

.media-gallery img,
.media-gallery video,
.media-gallery figure {
    width: 45%;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.media-gallery figure {
    margin: 0;
    padding: 0;
    text-align: center;
}

.media-gallery figure img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

figcaption {
    font-size: 0.9em;
    color: #555;
    margin-top: 5px;
}
