@import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Open Sans", sans-serif;
}

body {
    background: #ca93a5;
}


.header {
    box-shadow: 0px 5px 8px 0px rgba(34, 60, 80, 0.2);
    height: 55px;
    display: flex;
    justify-content: center;
    align-items: center;
}


.main {
    width: 100%;
    margin-top: 50px;
}

.themes {
    margin: 0 auto;
    width: 50vw;
    min-height: 200px;
    border-radius: 20px;
    box-shadow: 0px 0px 25px 0px rgba(34, 60, 80, 0.2);
}

.theme {
    padding: 20px 30px;
    margin-bottom: 35px;
}

.theme .name h2 {
    color: #000;
    font-size: 24px;
    margin-bottom: 5px;
}

.theme .description {
    font-weight: 500;
    font-weight: 20px;
}

.youtube-video {
    margin-top: 35px;
    display: flex;
    justify-content: center;
}

.youtube-video iframe {
    border-radius: 20px;
    width: 40vw;
    box-shadow: 0px 0px 25px 0px rgba(34, 60, 80, 0.2);
}

.maps {
    display: flex;
    justify-content: right;
    margin-top: 50px;
}

.maps iframe {
    height: 350px;
    width: 600px;
}

.footer {
    height: 55px;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0px 0px 25px 0px rgba(34, 60, 80, 0.2);
}

.footer .soc {
    display: flex;
    gap: 20px;
}

.footer .soc img {
    width: 45px;
}

.footer .soc img:hover {
    opacity: 0.8;
}


@media (max-width: 1600px) {
    .themes {
        width: 75vw;
    }

    .youtube-video iframe {
        width: 45vw;
    }

    .maps iframe {
        width: 100vw;
    }
}


@media (max-width: 1300px) {
    .youtube-video iframe {
        width: 70vw;
    }
}

@media (max-width: 600px) {
    .themes {
        width: 90vw;
    }

    .youtube-video iframe {
        width: 90vw;
    }
}


.theme ul {
    margin-left: 35px;
}

.theme h3 {
    margin-top: 35px;
}

.cookie-banner {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #333;
    color: #fff;
    padding: 15px;
    border-radius: 5px;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.2);
    z-index: 9999;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    width: 300px;
    font-size: 14px;
    display: none;
}

.cookie-banner a {
    color: #00d1b2;
    text-decoration: none;
}

.cookie-banner button {
    margin-top: 15px;
    background-color: #00d1b2;
    color: #fff;
    border: none;
    padding: 5px 10px;
    border-radius: 3px;
    cursor: pointer;
}

.cookie-banner button:hover {
    background-color: #008e7d;
}

.other {
    display: flex;
    justify-content: center;
    gap: 25px;
}