body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
}

main {
    display:flex !important;
    flex-wrap: wrap;
    justify-content: space-around;
}

#home {
    background: linear-gradient(rgba(17,36,90, 0.8), rgba(17,36,90, 0.8)), url("../Pictures/header4.jpeg");
    height: 50vh;
    background-position: center; 
    background-size: cover;
    background-attachment: fixed;
    display: flex;
    align-items: center;
 }
 
 #home h1 {
     font-weight: 700;
 }
 
 #home p {
     max-width: 550px;
     margin: auto;
 }

#dropDownList {
    display: flex;
    justify-content: center;
    margin-top: 30px;
    
}

#ddlselectMuscle, #ddlselectEqip {
    background-color: rgba(163, 198, 245, 0.8);
    text-align: center;
}

#muscleLabel, #equipLabel {
    margin: 0 10px 0 20px;

}

@media only screen 
  and (min-device-width: 375px) 
  and (max-device-width: 812px) 
  and (-webkit-min-device-pixel-ratio: 3) { 
    #dropDownList{
        display: flex;
        flex-flow:column wrap;
        align-content: space-around;
      }
   
}



