/* 
---------------------------------------------
About Us
--------------------------------------------- 
*/

*{
  margin: 0;
  padding: 0;
  font-family: sans-serif;
  box-sizing: border-box;
}

body {
  background-color: #002d5e;
  color: white;
}

.page-heading {
  font-size: 4rem; 
  font-weight: bold;
  text-align: center;
  color: white;
  text-shadow: 2px 2px 0 black;
}

.secondaryHeading{
  text-align: center;
  margin-bottom: 50px;
  font-size: 40px;
}

.box{
  background-color: #b74f00;
  padding: 50px;
  box-shadow: 1px 1px 10px 1px black;
}

.mission{
  text-align: right;
  margin: 50px auto;
}

.vision{
  text-align: left;
  margin: 80px auto;
}

.text{
  font-size: 18px;
  color: white;
  line-height: 30px;
}

/* Profiles*/
.profile{
  margin-bottom: 80px;
}

.profile .profile-img {
  height: 260px;
  width: 100%;
  border-radius: 5%;
  object-fit:cover;
}

.user-name {
  margin-top: 30px;
  font-size: 30px;
}

.profile h5 {
  font-size: 18px;
  font-weight: 100;
  letter-spacing: 3px;
  color: white;
}

.profile p {
  font-size: 16px;
  margin-top: 20px;
  text-align: justify;
}

