nav.dwl_carousel {
    background-color: #61835C;
}

nav.dwl_carousel img.carousel_main_picture {
    display: block;
    width: 100%;
    max-width: 600px;
    padding: 1em;
    box-sizing: border-box;
    margin: auto;
}

nav.dwl_carousel h1 {
    padding: 0 1em 1em 1em;
    color: white;
    font: normal 3em "Amatic SC", sans-serif;
    text-align: center;
}

nav.dwl_carousel div.dwl_links {
    width: 100%;
    max-width: 700px;
    display: block;
    margin: auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

@media screen and (min-width: 700px) {
    nav.dwl_carousel div.dwl_links {
        justify-content: space-between;
    }
}


nav.dwl_carousel div.dwl_links div.dwl_link {
    width: 100%;
    max-width: 340px;
    aspect-ratio: 4/3;
    background-size: cover;
    cursor: pointer;
    margin-bottom: 4em;
    position: relative;
}

nav.dwl_carousel div.dwl_links div.dwl_link::after {
    content: attr(data-title);
    position: absolute;
    bottom: -2em;
    text-transform: uppercase;
}