.navbar{
  z-index: 100;
  position: fixed;
  width: 100%;
  height: auto;
  background-color: rgba(0, 0, 0, 0.9);
  padding: .5rem 1rem;
}
.nav-logo{
  width: 150px;
  height: auto;
  margin-top: 0px;
  margin-bottom: 0px;
}
.go-back-button{
  position: static;
  height: 25px;
  width: 30px;
}
.main-container-shadow{
  /* change the opacity and size of the container convering the pages */
  height: 100vh;
  padding: 10px;
  background-color: rgba(0,0,0,0.5);
  background-clip: content-box;
  overflow: hidden;
}
.body-container{
  margin-top: 10%;
}
.title-box{
  color: white;
  background-color: rgba(0,0,0,0.3);
}
.title-box h4{
  font-weight: bold;
}
.title-box p{
  font-size: 12px;
}
.body-title{
  color: white;
}
.body-title div h4{
  font-size: 26px;
}
.body-text{
  color: white;
  font-size: 20px;
}
.services-list{
  color: white;
}
.services-list ul{
  margin-top: 10px;
  list-style-type: none;
  padding-left: 0px;
  font-size: 20px;
}
@media screen and (max-width: 700px){
  .main-container-shadow{
    height: auto;
    overflow: visible;
  }
  .body-container{
    margin-top: 55px !important;
  }
  .body-title div h4{
    font-size: 18px;
  }
  .body-text{
    margin-top: 15px;
    margin-bottom: 15px;
    font-size: 14px;
  }
  .services-list ul{
    list-style-type: none;
    padding-left: 0px;
    font-size: 12px;
  }
}