body {
    font-family: Arial, sans-serif;
    background-color: slategrey;
    background-image: linear-gradient(to bottom right, lightblue, slateblue);
}
#wrapper{
width: 100vw;
min-height: 100vh;
padding: 0;
margin-top: -8px;
margin-left: -8px;

}
#container{  
    width: 100%;
    display: flex;
    flex-direction: row;
   /* background-color: salmon; */
}
#gridContainer{   
    /* width: 50%;  */
    display: flex;
    flex-direction: row;
    /* background-color: teal; */
    margin: 0;
}
#buttonPanel{
    max-height: 600px;
    grid-column: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    margin: 0;
    /* background-color: cornflowerblue; */
}
.btnBlock{
    /* background-color: antiquewhite; */
    justify-content: space-between;
    margin: 0;
    padding:0 10px;
}
.panelbtn{
    width: 150px;
    height: 30px;
    text-align: center;
    display:block;
    background-color: #f4f4f4;
    border: 3px solid slateblue;
    border-radius: 15px;
    font: 1em sans-serif;
    line-height: 20px;
    margin: 10px 25px;
    cursor: pointer;
    box-shadow: 10px 10px 10px darkslategrey;
}
#radioBox{
    width: 144px;
    height: 105px;
    line-height: 27px;
    padding: -10px 10px 10px 10px;
}

#pictureplayer {
    margin: 0;
    /* background-color: cornflowerblue; */
}
#imagePanel {
    /* background-color: antiquewhite; */
}
#infoContainer {
    display: flex;
    flex-direction: column;
    /* background-color: teal; */
    margin: 0;
}
  @media screen and (max-width: 1200px) {
    #container {   
      flex-direction: row;
    }
    #gridContainer {   
        flex-direction: column-reverse;
        margin: auto;
      }
    /* #pictureplayer {
        position: relative ;
        top: -130px;
        margin: 0 ;
    } */
    #buttonPanel {   
        flex-direction: row;
        /* position: relative ;
        top: 600px; */
    }
    .btnBlock {
        margin: 0;
        padding: 0 0;

    }

  }
  @media screen and (max-width: 900px) {
    #container {   
      flex-direction: column;
    }
    /* #gridContainer {   
        flex-direction: column;
      } */

  }
  @media screen and (max-width: 650px) {
    #imagePanel {
        width: 95vw;
        height: 95vw;}
 
    #imageSrc {
        width: 95vw;
        height: 95vw;}

    #buttonPanel {   
        top: 95vw;
        width: 95vw;
    }
    #btnBlock3 {
        /* width: 30vw; */
        display: none;
    }
    .panelbtn{
        width: 35vw;
        margin: 10px 5vw;
        overflow: hidden;
    }
    /* #radioBox{
        width: 30vw;
        padding: -10px 10px 10px 10px;
    } */

} 
