body {
    font-family: 'Bangers', cursive;
    color: #000;
    margin: 0;
    padding: 0;
    background-color: #C3C3C3;
}

h1 {
    font-size: 5vw;
}

h2 {
    font-size: 3.75vw;
}

header {
    width: 100%;
    height: 10vw;
    background-image: url(images/banner/banner6.jpg);
    background-size: contain;
    position: relative;
    z-index: 1;
}

header img {
    width: 100%;
    height: auto;
}

nav {
    width: 100%;
    height: 5vw;
    background-color: #03F493;
    color: #7F7F7F;
    position: relative;
    z-index: 1;
}

nav ul {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: space-evenly;
    margin: 0;
    padding: 0;
}

nav ul a {
    width: 100%;
    text-decoration: none;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #7F7F7F
}

nav ul a li {
    list-style-type: none;
    font-size: 2.5vw;
}

#wrapper {
    -webkit-animation-name: fromTop;
    -webkit-animation-duration: 1s;
    animation-name: fromTop;
    animation-duration: 1s;
    position: relative;
}

@-webkit-keyframes fromTop {
    from {top: -1500px}
    to {top: 0}
}
  
@keyframes fromTop {
    from {top: -1500px}
    to {top: 0}
}

main img {
    width: 100%;
    height: auto;
    display: block;
}

.not-article {
    width: 100%;
    text-align: center;
    padding: 2.5vw;
    box-sizing: border-box;
}

.not-article a {
    text-decoration: none;
}

.not-article a:last-child .events {
    margin: 0;
}

.article {
    width: 100%;
    text-align: center;
}

.article article {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    padding: 2.5vw;
    padding-top: 0;
}

.article article p {
    width: 50%;
    margin: 0;
}

#map {
    width: 100%;
    height: 30vw;
}

p {
    font-family: Calibri, sans-serif;
    text-align: left;
    font-size: 2.5vw;
}

.slideshow-container {
    width: 100%;
    display: block;
    box-sizing: border-box;
    overflow: hidden;
    position: relative;
}

#static img {
    width: 100%;
    height: auto;
    display: block;
    box-sizing: border-box;
}

.mySlides {
    display: none;
    width: 100%;
    height: 100%;
    top: 0;
    display: block;
    position: absolute;
}

.mySlides img {
    width: 100%;
    height: auto;
    display: block;
    box-sizing: border-box;
}

.fade {
    -webkit-animation-name: slide;
    -webkit-animation-duration: 1.5s;
    animation-name: slide;
    animation-duration: 1.5s;
}

@-webkit-keyframes slide {
    from {left: 100%} 
    to {left: 0}
}
  
@keyframes slide {
    from {left: 100%} 
    to {left: 0}
}

.events {
    width: 100%;
    background-color: #03F493;
    display: block;
    box-sizing: border-box;
    padding: 2.5vw;
    margin-bottom: 2.5vw;
}

.events h2 {
    margin: 0;
    margin-bottom: 2.5vw;
    color: #FFF;
}

.events div {
    display: grid;
    grid-template-columns: auto auto;
}

.events div img {
    width: 100%;
    height: auto;
    display: block;
}

#contact {
    width: 100%;
    padding: 2.5vw;
    box-sizing: border-box;
    font-size: 2.5vw;
}

#contact form {
    display: flex;
    flex-direction: column;
}

#contact form span {
    margin: 1vw 0;
}

#contact form input {
    width: 54.5vw;
    height: 3.25vw;
    box-sizing: border-box;
}

#contact form textarea {
    width: 78vw;
    height: 25vw;
    box-sizing: border-box;
}

#contact form button {
    width: 78vw;
    height: 4vw;
    box-sizing: border-box;
    font-family: 'Bangers', cursive;
    color: #FFF;
    background-color: #7F7F7F;
    font-size: 2.5vw;
}

footer {
    width: 100%;
    height: 10vw;
    background-color: #03F493;
    color: #7F7F7F;
    font-size: 3.75vw;
    display: flex;
    align-items: center;
}

footer figure {
    margin: 0;
    padding: 0;
    display: inline-block;
}

footer figure img {
    height: 10vw;
    width: auto;
    display: block;
}

#copyright {
    margin: 0 auto;
}