body {
    background: #d7ebfd;
    color: #666;
    min-height: 100%;
    line-height: 21px;
    font-size: 12px;
    font-weight: 100;
    font-family: Verdana, Arial, "Trebuchet MS", sans-serif;
}

header {
    background-color: #ffffff;
    padding: 10px 0;
    width: 100%;
    margin-bottom: 0;
}

nav {
    background-color: #ffffff;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 6px 6px rgba(0, 0, 0, 0.2);
    margin-bottom: 0;
}

footer {
    background-color: #ffffff;
    padding: 10px 0;
    width: 100%;
}


.container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
}

.navbar {
    display: flex;
    justify-content: center;
    align-items: center;
}

.navigation {
    list-style-type: none;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
}

.navigation li {
    margin: 0 15px;
}

.navigation a {
    text-decoration: none;
    color: black;
    padding: 10px 20px;
    display: block;
	margin: 5px;
}

.navigation a:hover {
    background-color: #999999;
    border-radius: 0px;
}

.active {
    background-color: #c2c2c2;
    border-radius: 0px;
}

.mail a:hover {
    background-color: #999999;
}

.copyright-section {
    background-color: #ffffff;
    text-align: center;
    color: #666;
    font-size: 12px;
}

h1 {
    font-family: Arial, Verdana, "Trebuchet MS", sans-serif;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 1.2px;
    margin: 6px 0;
    /* color: #999999; */
}

h2 {
    font-family: Arial, Verdana, "Trebuchet MS", sans-serif;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1.2px;
    margin: 6px 0;
    /* color: #a8a8a8; */
}

#main {
    position: relative;
    top: 0;
    left: 0;
    margin: 0 auto;
    min-height: 100%;
}

#foot {
    padding: 10px;
    color: #000000;
}

#images {
    width: 100%;
}

.clear {
    clear: both;
    height: 1px;
}

.slideshow {
    position: relative;
    width: 100%;
    height: 200px;
    overflow: hidden;
    white-space: nowrap;
}

.slideshow img {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 25%;
    animation: slide 35s linear infinite;
    animation-timing-function: linear;
}

@keyframes slide {
    0% {
        transform: translateX(1000%) translateY(-50%);
    }
    100% {
        transform: translateX(-1000%) translateY(-50%);
    }
}

.slideshow img:nth-child(1) {
    animation-delay: -35s;
}

.slideshow img:nth-child(2) {
    animation-delay: -30s;
}

.slideshow img:nth-child(3) {
    animation-delay: -25s;
}

.slideshow img:nth-child(4) {
    animation-delay: -20s;
}

.slideshow img:nth-child(5) {
    animation-delay: -15s;
}

.slideshow img:nth-child(6) {
    animation-delay: -10s;
}

.slideshow img:nth-child(7) {
    animation-delay: -5s;
}

.slideshow img:nth-child(8) {
    animation-delay: 0s;
}

@media (max-width: 768px) {
    #main {
        width: 100%;
        padding: 0 15px;
    }
    .navigation {
        flex-direction: column;
        align-items: flex-start;
    }
    .navigation li {
        margin: 10px 0;
    }
}
