#navigation {
    display: flex;
    justify-content: space-around;
    padding: 20px;
    color: black;
    font-family: 'HFMonorita Bold', sans-serif;
}
.nav-current {
    color: black;
    text-decoration: none;
    font-size: 30px;
}
.nav-other {
    color: rgb(165, 155, 155);
    text-decoration: none;
}
.carousels img {
    width: 20%;
    animation: carousel 20s linear infinite;
    padding: 10px;
    border: solid 5px black;
}
.carousels {
    display: flex;
    justify-content: space-around;
    overflow: hidden;
}
@keyframes carousel {
    0% {
        transform: translateX(+100vh);
    }
    100% {
        transform: translateX(-100vh);
    }
}
.carousels img:nth-child(1) {
    animation-delay: 1s;
}
.carousels img:nth-child(2) {
    animation-delay: 1s;
}
.carousels img:nth-child(3) {
    animation-delay: 1s;
}
.carousels img:nth-child(4) {
    animation-delay: 1s;
}
.carousels img:nth-child(5) {
    animation-delay: 1s;
}
.carousels img:nth-child(6) {
    animation-delay: 1s;
}
.carousels img:nth-child(7) {
    animation-delay: 1s;
}

.button {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

button {
    padding: 10px;
    background-color: white;
    color: black;
    font-family: 'HFMonorita Bold', sans-serif;
    border: solid 5px black;
    font-size: 20px;
    margin-top: 20px;
    text-decoration: none;
}

button:hover {
    background-color: black;
    color:white;
    cursor:pointer;
    border: solid 5px white;
}

.slides, .slides-wide {
    display: flex;
    justify-content: center;
    flex-wrap: nowrap;

}
.slides img {
    max-width: 40%;
    margin: 20px;
    border: solid 5px black;
}
.slides-wide img {
    max-width: 70%;
    margin: 20px;
    border: solid 5px black;
}

@media all and (max-width:500px) {
    #navigation {
        padding: 10px;
    }
    .nav-current {
        font-size: 20px;
    }
    .nav-other {
        font-size: 10px;
    }
    .slides-wide img {
        max-width: 90%;
    }

}
@media all and (max-width:420px) {
    .slides img {
        max-width: 35%;
    }
    .slides-wide img {
        max-width: 60%;
    }
}
@media all and (max-width:380px) {
    .nav-current {
        font-size: 15px;
    }
    .nav-other {
        font-size: 8px;
    }
}