﻿body {
    background-image: none;
    width: 97vw;
    font-size: 100%;
}



@media only screen and (max-width: 992px) {
    body {
        font-size: 80%;
    }
}



main {
    max-width: 1200px;
    margin: auto;
    /*border: 2px red dashed;*/
    background-image: url(img/kornfeld_1220x820.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    display: grid;
    grid-template-columns: 33% 66%; /* 400px 800px = 1200px */
    grid-template-rows: 100px 640px 60px; /* ~800px */
    grid-template-areas:
        "headerArea headerArea"
        "tracklistArea trackdetailArea"
        "footerArea footerArea"
}
@media only screen and (max-width: 600px) {
    main {
        /*background-image: none;*/
        grid-template-columns: 97vw;
        grid-template-rows: 80px auto auto 50px;
        grid-template-areas:
            "headerArea"
            "tracklistArea"
            "trackdetailArea"
            "footerArea"
    }
}



header {
    grid-area: headerArea;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: flex-end;
}


@media only screen and (max-width: 600px) {
    header {
        align-items: center;
    }
}




button.albenMenu {
    font-family: Itim, sans-serif;
    font-size: 2em; /*38px 2.8vw calc(1.2vw + 1vh)*/
    color: #6d3c07;
    height: 1.7em; /*50px 4vh*/
    width: auto; /*7em 220px 18vw*/
    margin: 0.4em; /*10px*/
    border: 1px;
    border-style: solid;
    border-radius: 16px;
    border-color: #6d3c07;
    background-image: linear-gradient(to bottom, lightgrey, white, white, lightgrey);
    box-shadow: 2px 2px 5px rgba(0,0,0,0.7); /*, 0px 0px 8px 5px rgba(0,0,0,0.2) inset;*/
}


@media only screen and (max-width: 768px) {
    button.albenMenu {
        font-size: 1.5em;
        height: 1.2em;
        width: auto;
        margin: 0.2em;
    }
}

    button.albenMenu:hover {
        transition-duration: 0.2s;
        color: #9d6c37;
        /*margin: 10px;*/
        /*text-shadow: -1px 0 #d98121, 0 1px #d98121, 1px 0 #d98121, 0 -1px #d98121;
        color: white;*/
    }

    button.albenMenu:active {
        transition-duration: 0.2s;
        position: relative;
        left: 2px;
        top: 2px;
        box-shadow: none;
    }


aside {
    grid-area: tracklistArea;
    margin: 0px 0px 0px 60px;
    border-style: solid;
    border-width: 0px;
    border-radius: 16px 0px 0px 16px;
    border-color: #6d3c07;
    background-position: left top;
    background-repeat: repeat;
    padding-left: 20px;
}

@media only screen and (max-width: 600px) {
    aside {
        border-radius: 20px 20px 0px 0px;
        margin: 5px 5px 0px 5px;
        padding: 10px;
    }
}



article {
    grid-area: trackdetailArea;
    color: #6d3c07; /*#33465b;*/
    font-family: Itim, sans-serif;
    margin: 0px 60px 0px 0px;    
    padding: 20px 20px 20px 60px;
    /*text-align: left;*/
    border-style: solid;
    border-width: 0px;
    border-color: #6d3c07;
    border-radius: 0px 16px 16px 0px;
    background-position: left top;
    background-repeat: repeat;
}

@media only screen and (max-width: 600px) {
    article {
        border-radius: 0px 0px 16px 16px;
        margin: 0px 5px 5px 5px;
        padding: 10px;
    }
}



dl {
    font-family: Itim, sans-serif;
    color: #6d3c07;
    font-weight: bold;
    height: 450px;
}

@media only screen and (max-width: 600px){
    dl{
        height:auto;
    }
}



dt {
    text-align: left;
    vertical-align: text-top;
    font-size: 1.5em; /*3vw 28px*/
    margin-bottom: 0.8em;
}

dd {
    text-align: left;
    vertical-align: text-top;
    font-size: 1.2em; /*2vw*/
    margin-left: 0px;
}

li {
    font-family: Itim, sans-serif;
    color: #6d3c07;
    font-weight: normal;
    font-size: 1.0em;
}

@media only screen and (max-width: 600px) {
    dt{
        margin-bottom: 0em;
        margin-top: 0.5em;
    }
    dd {
        /*font-size: calc(2vw * 0.9 + 1);*/
        /*font-size: 1em;*/
        display: inline-block;
        /*background-color: #ae9f73;*/
        /*        border-block: solid;
        border-block-color: darkred;
        border-block-width: 1px;*/
        border-inline: solid;
        border-inline-color: #6d3c07;
        border-inline-width: 4px 0px;
        margin: 4px;
        padding-right: 5px;
        padding-left: 2px;
    }
}

    a {
        color: #6d3c07;
        text-decoration: none;
    }

    a:hover {
        text-decoration: underline;
    }

    a:visited {
        color: #6d3c07;
    }


#titel {
    font-family: Itim, sans-serif;
    color: #6d3c07;
    font-size: 1.5em; /*26px*/
    font-weight: bold;
    display: inline-block;
}

#hinweis{
    display:none;
    font-family: Itim, sans-serif;
    font-size: 0.8em;
    font-weight: bold;
    color: #de442e;
    transform: rotate(-20deg);
    vertical-align:baseline;
    margin-left: 5px;
    animation-name: hallo;
    animation-duration: 1.5s;
}

@keyframes hallo{
    0%      {transform: rotate(-20deg);}
    50%     {transform: rotate(20deg);}
    100%    {transform: rotate(-20deg);} 
}


#beschreibung {
    font-size: 1.2em; /*18px*/
}


#einstieg {
    color: white;
    text-shadow: -1px 0 black, 0 1px black, 1px 0 black, 0 -1px black;
    font-family: Itim, sans-serif;
    font-size: 38px;
    font-weight: normal;
    text-align: left;
}

@media only screen and (max-width: 600px) {
    #einstieg {
        text-align: center;
    }
}



footer {
    grid-area: footerArea;
    color: #ffffff;
    font-family: Itim, sans-serif;
    font-size: 0.9em;
    text-align: center;
    margin-top: 9px;
}

section {
    grid-area: tracklistArea;
    font-family: Itim, sans-serif;
    font-size: 0.9em;
    color: black;
    z-index: 3;
    margin-bottom: 8px;
    margin-top: auto;
    margin-left: 68px;
    width: 17em;
    height: 40px;
    padding-left: 3px;
    padding-right: 3px;
    background: #917b62;
    /*background: #6d3c07;*/
    opacity: 0.9;
    border: 1px #8db686 solid;
    box-shadow: -4px 4px 4px rgba(0,0,0,0.4);
    border-radius: 16px;
    display: none;
}

@media only screen and (max-width: 600px) {
    section {
        grid-area: tracklistArea;
        margin-right: 8px;
        margin-left: auto;
        margin-top: 8px;
    }
}
