body {
  font-family: 'Lexend Giga', sans-serif;
  font-size: 16px;
  background: -webkit-linear-gradient(left, rgba(67, 122, 142, 0.2), #709090);

}

/*start of nav bar styling*/
#bar, footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-height: 8vh;
  padding: 0 2vw;
  background: #A9A9A9;
  color: #FFF;
  font-size: 1.15rem;
}
footer {
  min-height: 5vh;
  justify-content: space-around;
  font-size: 0.75rem;
}
#bar a {
  margin: 4px;
  text-decoration: none;
  color: #FFF;
}
#bar a:hover {
  color: #000;
}
.active {
  font-size: 150%;
  color: #000;
}
.nav-links {
  display: flex;
  position: absolute;
  z-index: 100;
  top: 8vh;
  left: 0;
  height: 8vh;
  width: 100vw;
  font-size: 0.75rem;
  align-items: center;
  justify-content: space-around;
  background: rgba(169, 169, 169, 0.95);
  transform: translateX(-110%);
  transition: 0.3s ease-in;
}
.nav-links-active {
  transform: translateX(0%);
}
.logo {
  display: flex;
  width: 60vw;
  justify-content: center;
}
.nav-contact {
  display: flex;
  width: 20vw;
  justify-content: space-around;
}
.burger {
  width: 20vw;
  cursor: pointer;
  justify-content: flex-start;
}
.burger div {
  height: 2px;
  width: 30px;
  background: #FFF;
  margin: 3px;
  transition: all 0.5s ease-in-out;
}
/*animation of the menu burger*/
.top-active {
  transform: translateY(2.5px) rotate(135deg);
}
.bottom-active {
  transform: translateY(-2.5px) rotate(-135deg);
}
/*end of nav bar styling*/

/*start of cover page styling*/
.cover {
  height: 45vh;
  padding: 2vw;
  background-image: url('../images/me900x721.jpg');
  background-size: cover;
}
.technical-skills {
  height: 100%;
  width: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 0.9rem;
}
.technical-skills ul{
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  height: 100%;
}
.technical-skills li {
}
.technical-skills li:before {
  content: "\f1ce";
  font-family: FontAwesome;
  display: inline-block;
  width: 1.2em;
}
/*start of about section styling*/
.about {
  height: 45vh;
  padding: 2vw;
}
.about h2 {
  text-align: center;
  margin-bottom: 2vh;
}
.about hr {
  width: 50vw;
}
.about-container {
  height: 95%;
  display: flex;
  justify-content: space-around;
  padding: 15px;
}
.text-box-container {
  width: 75%;
}
.soon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  text-align: center;
  font-size: 2.2rem;
}

/*for landscape mode on iphone 6/7/8*/
@media only screen
and (min-device-width : 375px)
and (orientation : landscape){
  .cover {
    background-image: url('../images/me-landscape-iphone.jpg');
    background-position: center;
    height: 90vh;
  }
}
/*for laptop screen*/
/*min-width set to 850px to exclude the iPhone 11 828x1792*/
@media only screen and (min-width : 850px) {
  .cover {
    background-image: url('../images/inismor-background-1366x768.jpg');
    background-position: center;
    background-attachment: fixed;
    height: 75vh;
  }
  #bar {
    font-size: 1.5rem;
  }
  .technical-skills {
    font-size: 1.25rem;
  }
  .burger {
    display: none;
  }
  .nav-links {
    position: inherit;
    font-size: 1.25rem;
    transform: translateX(0%);
    order: 2;
  }
  .logo {
    order: 1;
  }
  .nav-contact {
    justify-content: flex-end;
    order: 3;
  }
}
