body {
    margin: 0;
    font-family: Arial, sans-serif;
    background-color: #ddd5d5;
    color: #302727;
    min-height: 100vh;
}

main{
    min-height: 80%;
}

header {
    background-color: #fff;
    padding: 20px;
    text-align: center;
}
 footer {
    background-color: #171414;
    color: #f7f4f4;
    padding: 20px;
    text-align: center;
}
nav {
    display: flex;
    justify-content: center;        /* Horizontally center links */
    align-items: center;            /* Vertically center links */
    height: 50px;
    background-color: #3e6d8f;      /* Replace lch if unsupported */
    padding: 0;
    font-weight: bolder;
}

nav a {
    color: #fff;
    margin: 0 15px;
    text-decoration: none;
    padding: 10px 0;                /* optional spacing for click area */
}


main {
    padding: 20px;
}
.slideshow {
    max-width: 100%;
    overflow: hidden;
    position: relative;
}
.slide {
    width: 100%;
    height: auto;
    display: none;
}
.image-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
    float: right;
}
.image-row img {
    width: 48%;
}
@media (max-width: 600px) {
    .image-row img {
        width: 100%;
    }
}