* {
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat Alternates', sans-serif;
    font-size: 1rem;
    color: #000;
    margin: 0;
}

.container{
    margin: 0 auto;
    width: min(768px, 100%);
    display: grid;
    grid-gap: 0.5em;
    grid-template-areas:
        "header"
        "main"
        "inhalt"
        "interessiert"
        "footer";
}

header {
    grid-area: header;
    font-weight: 900;
    font-size: clamp(1.5rem, 7vw, 3vw);
    padding-left: 12vmin;
    padding-top: 1.5em;
    padding-bottom: 0.5em;
    line-height: 1.1;
}

header a
{
    color: black;
}

main{
    grid-area: main;
}

main a:hover {
    background-color: #FFFF00;
    opacity: 0.2;
}

.pfeil {
    font-size: clamp(1.1rem, 5vw, 2rem);
    text-decoration: none;
}

.pfeil a{
    text-decoration: none;
    color: chocolate;
    -webkit-transform: rotate(80deg);
    -moz-transform: rotate(80deg);
    -o-transform: rotate(80deg);
    writing-mode: lr-tb;
}

.pfeil a:hover {
    background-color: transparent;
    color: black;
    opacity: 1;
}

.inhalt {
    grid-area: inhalt; 
    padding-left: 0.5em;
    padding-top: 1.5em;
    padding-right: 2em;
    line-height: 1.6;
}

.interessiert {
    grid-area: interessiert; 
    padding-top: 2em;
    padding-bottom: 0em;
    padding-left: 12vmin;
}


footer {
    text-align: left;
    grid-area: footer;
    padding-top: 5em;
    padding-left: 0.5em;
    padding-bottom: 5em;
   
}


a {
    text-decoration: none;
    color: chocolate;
}

a:hover {
    color: black;
}



.iframe-container {
    overflow: hidden;
    /* 16:9 aspect ratio */
    padding-top: 0;
    position: relative;
}

.iframe-container iframe {
    border: 0;
    height: 100%;
    left: 0;
    position: absolute;
    top: 0;
    width: 100%;
}

