@import url("css2.css");

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

body {
    background: #ff6b00;
	color: #f5f5f5;
}

.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: #f5f5f5;
    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;
    }
}