.Awards{
  /*maintains the positioning and size of the entire block*/
  margin:1em;
  margin-left: 2em;
  margin-top:16em;
}
#Awards{
  /*maintains the style of the heading*/
  font-size: 3em;
  padding-left: 1em;
  border-left: 4px solid maroon;
  color:maroon;
}
.Awards li{
  /*maintains the style of the content*/
  font-size: 1em;
  padding:0.5em;
  margin-left: 0.6em;
}
/************************************************Media Query***********************************/
/***********************************************Media Query***********************************/
/*******************This portion of code used to manupulate the view in mobile and tablet*****/
@media screen and (max-width: 900px){
  .Other{
    margin-right: 0em;
    margin-left: 0em;
    font-size: 0.8em;
  }
  #Awards{
    font-size: 2em;
  }
  .Awards li{
    font-size: 1em;
  }
}
@media (min-width: 768px) and (max-width: 1024px) {
  .Awards li{
    font-size: 1.5em;
  }

}
