@charset "UTF-8";
*{
    margin: 0;
    padding: 0;
}
body {
    font-family: "Merriweather", serif;
    background-color: #F2F2F2;
}
.wrapper {
    background-color: #ffffff;
    margin: 2rem auto;
    padding: 2rem;
    max-width: 960px;
}
.main-section {
    margin: 3% 0;
}
header {
    margin: 0 0 2%;
}
header img {
    max-width: 100%;
    margin: 0 auto;
    vertical-align: middle;
    display: block;
    justify-content: center;
}
.frame-section {
    margin-bottom: 4%;
}
h1 {    /* Titel */
    font-weight: 400;
    font-size: 2rem;
    text-transform: uppercase;
    color: #006EB7;
    border-top: solid 1px #006EB7;
    border-bottom: solid 1px #006EB7;
    margin-bottom: 1rem;
    padding: 0.6rem 0;
    text-align: center;
}
h2 {
    font-weight: 500;
    text-align: center;
    font-size: 1.1rem;
    padding: 1rem 0;
}
h3 {/* Untertitel im Textfluss */
    font-weight: 400;
    font-size: 1.2rem;
    color: #006EB7;
    text-transform: uppercase;
    border-bottom: 1px solid #006EB7;
    margin: 20px 0;
}
h4 {
    font-family: "Roboto", sans-serif;
    font-weight: 400;
    font-size: 1rem;
    line-height: 1.5;
    text-align: right;
    padding-bottom: 0.2rem;
}
p {
    font-family: "Roboto", sans-serif;
    font-weight: 400;
    font-size: 1rem;
    line-height: 1.5;
    padding-bottom: 1rem;
}
a, a:link, a:visited, a:active, a:hover {
    font-family: "Roboto", sans-serif;
    font-weight: 400;
    font-size: 1rem;
    line-height: 1.5;
    color: #006EB7;
}
a, a:link, a:visited, a:active {
    text-decoration: none;
}
a:hover {
    text-decoration: underline;
}
ul {
    font-family: "Roboto", sans-serif;
    font-weight: 400;
    font-size: 1rem;
    line-height: 1.5;
    padding: 0 0 1rem 1rem;
}
li {
    list-style-type: square;
}
ul ul {
    margin-left: 1rem;
}
.bild {
    display: flex;
    gap: 1rem;
}
.bild img {
    width: 49%;
}
.bildtext {
    font-weight: 400;
    font-size: 0.8rem;
    text-align: center;
    margin-bottom: 1rem;
}

.infobox {
    padding: 1.6rem;
    border: 1px solid #006EB7;
    border-radius: 0.3rem;
    margin: 2rem 0;
}
.infobox h3 {
    margin-top: 0;
}
.center {

    display: flex;
    justify-content: center;
}
.info {
    display: flex;
    justify-content: space-between;
}
.icon {
    width: 1.6rem;
    padding-top: 0.4rem;
}
button {
    font-weight: 500;
    font-size: 1rem;
    font-family: "Roboto", sans-serif;
    background-color: #006EB7;
    border: none;
    border-radius: 8px;
    color: #fff;
    padding: 0.6rem 3rem;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    margin: 1rem;
    transition-duration: 0.4s;
    cursor: pointer;
}
button:hover {
    background-color: #5b5b5b;
}
.social-media {
    text-align: right;
}
.social-media img {
    width: 1.5rem;
    vertical-align: bottom;
    padding-left: 1rem;
}
@media only screen and (max-width: 768px) {
    .wrapper {
        margin: auto;
    }
    h1 {
        font-size: 1.3rem;
    }
    iframe {
        width: 97% !important;
        height: 420px !important;
    }
    .info {
        display: block;
    }
}

@media only screen and (max-width: 430px) {
    iframe {
        width: 94% !important;
        height: 600px !important;
    }
}