section{
    background-color: rgb(255, 255, 255);
    border-radius: 5px;
    padding: 1rem;
    margin-top: 0.5rem;
    margin-bottom: 0.5rem;
    overflow-y: hidden;
}
h2{
    font-family:'Cinzel Decorative', cursive;
    font-size: 1.2rem;
}
.instrument{
    color: indianred;
}
section img{
    display: block;
    width:70%;
    margin-left: 15%;
    margin-bottom: 2rem;
    box-shadow:  0 0 10px 5px rgba(0, 0, 0, 0.4);
}
small{
    color: darkgray;
    line-height: 5rem;
}
@media screen and (min-width:40em){
    section img{
        width: 30%;
        display: inline;
        margin-left: 1rem;
       /* margin-top: -2rem;*/
        
    }
    .instrument, p::first-letter{
        padding-bottom: 0;
        padding-top: 0;
        margin-left: 0;
        padding-left: 0;
    }
    span{
        max-width: 15em;
        margin-right: 1rem;
    }
    .sec{
        display: flex;
        flex-flow: row;
        justify-content: space-between;
        align-items: flex-start;
    }
    #firstS{
        grid-area: 1/1/6/21;
    }
    #secondS{
        grid-area: 6/1/11/21;
    }
    #thirdS{
        grid-area: 11/1/16/21;
    }
    #fourthS{
        grid-area: 16/1/21/21;
    }
}
@media screen and (min-width:64em){
    .sec{
        max-width: 35em;
    }
    section img{
        width: 10em;
    }
}
@media screen and (min-width:85em) and (orientation: landscape){
    main{
        grid-template-rows: repeat(20, 5%);
    }
}