@font-face {
    font-family: menu-font;
    src: url(../font/Girassol-Regular.ttf);
}

body {
    background-image: url("../pics/wolken03.jpg");
    background-size: cover;
    background-attachment: fixed;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
}
iframe {
    width: 70%;
    height: 70%;
    margin-bottom: 4px;
}
video {
    width: 50%;
}

.dragonhead {
    position: fixed;
    right: 0;
    max-height: 100%;
    z-index: -1;
}
@media screen and (max-width: 1300px) {
    .dragonhead {
        display: none;
    }
}
/*header style*/
.header {
    display: flex;
    align-items: flex-start;
    margin-bottom: 15px;
}
.header img {
    display: block;
    margin: auto;
    max-width: 60%;
}
@media screen and (max-width: 1024px) {
    .header img {
        display: block;
        margin: auto;
        max-width: 100%;
    }
}

/*menu style*/
.menu {
    background-color: rgba(0, 0, 0, 0.7);
    border-radius: 9px;
    display: block;
    width: 65%;
    margin: 0 auto 0 auto;
    height: 5vh;
    text-align: center;
}
@media screen and (max-width: 1024px) {
    .menu {
        background-color: rgba(0, 0, 0, 0.7);
        border-radius: 9px;
        display: block;
        width: 100%;
        margin: 0 auto 0 auto;
        height: 5vh;
        text-align: center;
    }
}
.menu-list {
    display: inline-block;
    margin: 0;
    list-style: none;
    overflow: visible;
    height: 100%;
    padding: 0;
    font-family: menu-font;
}
.burger-menu {
    display: none;
}
ul li {
    float: left;
}
@media screen and (max-width: 1024px) {
    .menu-list {
        display: none;
    }
    .burger-menu {
        display: block;
    }
    .burger-menu-icon {
        max-height: 4.5vh;
        margin-top: 4px;
    }
    .burger-menu-list {
        display: none;
        position: relative;
        z-index: 1;
        overflow-wrap: break-word;
        margin: 0 auto 0 auto;
        list-style: none;
        padding: 0;
        font-family: menu-font;
        background-color: rgba(0, 0, 0, 0.9);
        width: 95%;
        border-radius: 9px;
    }
    ul li {
        float: none;
    }
    #toggle-menu {
        display: none;
    }

    #toggle-menu:checked ~ .burger-menu-list {
        display: inline-block;
    }
}
.menu-element {
    display: block;
    padding: 10px 10px;
    text-decoration: none;
    font-size: 30px;
    color: rgb(144, 144, 145);
}
@media screen and (max-width: 500px) {
    .menu-element {
        font-size: 20px;
    }
}
.menu-element:hover {
    text-shadow: 1px 1px 10px rgb(194, 255, 255), 1px 1px 10px rgb(194, 255, 255);
}

.menu-element.active {
    color: rgb(194, 255, 255);
}

/*content style*/
.content {
    width: 65%;
    display: flex;
    align-items: flex-start;
    margin: auto;
}
@media screen and (max-width: 1024px) {
    .content {
        width: 98%;
        display: flex;
        align-items: flex-start;
        margin: auto;
    }
}
.content-background {
    width: 100%;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-evenly;
    padding: 2% 0%;
    overflow-y: auto;
    background-color: rgba(0, 0, 0, 0.3);
    display: flex;
    border-radius: 9px;
}
.content-card {
    display: flex;
    flex-direction: column;
    width: 48%;
    height: 100%;
    margin-bottom: 40px;
    border: 1px solid;
    border-color: gray;
    border-radius: 9px;
    background-color: rgba(0, 0, 0, 0.7);
}
@media screen and (max-width: 1024px) {
    .content-card {
        display: flex;
        flex-direction: column;
        width: 100%;
        height: 100%;
        margin-bottom: 3%;
        border: 1px solid;
        border-color: gray;
        border-radius: 9px;
        background-color: rgba(0, 0, 0, 0.7);
    }
}
.content-card-header {
    padding: 15px 15px 5px 15px;
    color: rgb(194, 255, 255);
    & h3 {
        font-size: larger;
        margin-top: 5px;
        margin-bottom: 0px;
    }
}

.content-card-body {
    padding: 5px 15px 15px 15px;
    color: rgb(194, 255, 255);
}

@media screen and (max-width: 500px) {
    .content-card-body {
        padding: 5px 15px 15px 15px;
        color: rgb(194, 255, 255);
        font-size: 12px;
    }
}

.content-card-body img.cover {
    max-width: 25%;
    padding-left: 15px;
    padding-bottom: 5px;
}
@media screen and (max-width: 500px) {
    .content-card-body img.cover {
        max-width: 50%;
    }
}
.content-card-footer {
    padding: 5px;
    color: gray;
    text-align: right;
}
/* Stellt den Container des Videos responsiv ein */
.responsive-video {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
    padding-top: 25px;
    height: 0;
}
/* Stellt das iframe des Videos so ein, dass es den Container voll ausfüllt */
.responsive-video iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
.video {
    width: 45%;
    height: 28vh;
    float: right;
    margin-left: 15px;
    margin-bottom: 15px;
}

a.button {
    background-color: rgb(199, 227, 227);
    border: 2px solid gray;
    border-radius: 9px;
    color: black;
    padding: 3px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    cursor: pointer;
}
@media screen and (max-width: 500px) {
    a.button {
        background-color: rgb(199, 227, 227);
        border: 1px solid gray;
        border-radius: 9px;
        color: black;
        padding: 1% 2%;
        text-align: center;
        text-decoration: none;
        font-size: 11px;
        display: inline-block;
        margin: 2px 1px;
        cursor: pointer;
    }
}
.playlist-container {
    width: 60%;
    float: right;
}
.playlist {
    border-radius: 12px;
    width: 100%;
    height: 200px;
    float: right;
}
/*footer style*/
.footer {
    background-color: rgba(0, 0, 0, 0.7);
    margin-top: 20px;
    bottom: 0;
    width: 100%;
}
.footer a:link {
    color: rgb(194, 255, 255);
}
.footer a:visited {
    color: rgb(194, 255, 255);
}
.footer a:hover {
    color: rgb(116, 161, 161);
}
.footer-text {
    padding-top: 3px;
    padding-bottom: 3px;
    text-align: center;
    color: white;
}
.link-icon {
    width: 25px;
    height: 25px;
    margin-top: 5px;
    padding-left: 2px;
    padding-right: 2px;
}
