main {
     background-image: url(images/mozart-1.png);
    background-size:cover;
    background-repeat: no-repeat;
    background-position: center;
}
section{
    background-color: rgba(255, 255, 255, 0.7);
    padding: 1.5rem;
    width: 100vw;
    margin-left: 0;
}
section p{
    font-size: 1.2rem;
    margin-bottom: 2rem;
    line-height: 1.8rem;
}
.kontakt{
   text-decoration: none;
   color:rgb(103, 1, 1);
   font-family: Arial, Helvetica, sans-serif;
   display: block;
   margin-top: 1.8rem;
}
@media screen and (min-width:40rem){
    body{
        display: flex;
        flex-flow: column;
        min-height: 100vh;
        height: 100vh;
        justify-content: space-between;
        
    }
    main {
       /* height: 70%;*/
       flex-grow: 70;
      
    }

    h1{
        background-color: rgba(255, 249, 240, 0.7);
        width: fit-content;
        margin-left: auto;
        margin-right: auto;
        padding: 1rem;
        border-radius: 10px;
    }
    section{
        height: 100%;
       background-color: transparent;
        width: 100%;
    }
    section p{
        width: 55%;
        padding: 1rem;
        background-color: rgba(229, 223, 212, 0.903);
        border-radius: 10px;
        line-height: 2rem;
        font-size: 1.4rem;
    }
}
@media screen and (min-width:40rem) and (orientation: landscape){
    body {
        height: auto;
    }
}