body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    margin: 0;
    font-family: Arial, sans-serif;
    background: #f7f7f7;
}


.navbar {
    background: #19c5b4;
    padding: 15px 0;
    display: flex;
    justify-content: center;
    gap: 60px;
}

.navbar a {
    color: white;
    text-decoration: none;
    font-weight: bold;
    font-size: 18px;
}

.title {
    text-align: center;
    margin-top: 30px;
    font-size: 32px;
}


.gallery {
    width: 80%;
    margin: 40px auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.photo img {
    width: 280px;
    height: 200px;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}


.footer {
    background-color: #7ee6e6;
    padding: 40px 20px;
    display: flex;
    justify-content: space-around;
    align-items: flex-start;
    text-align: left;
    font-family: Arial, sans-serif;
    margin-top: auto;
}

.footer-column {
    display: flex;
    flex-direction: column;
}

.footer-column h3 {
    margin-bottom: 10px;
    font-weight: bold;
}

.footer-column a {
    color: #5a4bcf;
    text-decoration: none;
    margin: 4px 0;
}

.footer-column a:hover {
    text-decoration: underline;
}

.footer-column p {
    margin: 6px 0;
}

