*{
  margin: 0;
  padding: 0;
  font-family: 'PT Sans', sans-serif;
}

html{
  scroll-behavior: smooth;
}

.header {
  min-height: 100vh;
  width: 100%;
  background-image: linear-gradient(
    rgba(80,94,99,0.8),
    rgba(0,0,0,0.83)),
    url("../images/NAU_biketrail.jpg");
  background-position: center;
  background-size: cover;
  position: relative;
}

        /*  Navigation  */

nav{
  display: flex;
  padding: 0.5% 6%;
  justify-content: space-between;
  align-items: center;
  background-color: #000000a3;
  border: 1px ridge black;
}

  nav img{
    width: 160px;
    border: 2px solid #e1e1e1;
  }

  .nav-links{
    flex: 1;
    text-align: right;
  }

    .nav-links ul li{
      list-style: none;
      display: inline-block;
      padding: 0px 45px;
      position: relative;
    }

    .nav-links ul li a{
      color: #fff;
      text-decoration: none;
      font-size: 24px;
    }

    .nav-links ul li::after{
      content: '';
      width: 0%;
      height: 2px;
      background: #ffff;
      display: block;
      margin: auto;
      transition: 0.5s;
    }

    .nav-links ul li:hover::after{
      width: 100%;
    }




            /*  Introduction  */


.text-box{
  width: 75%;
  color: #fff;
  position: absolute;
  top: 60%;
  left: 50%;
  transform: translate(-50%,-50%);
  text-align: center;
}

  .text-box h1{
    font-size: 56px;
  }

  .text-box p{
    margin: 10px 0 40px;
    font-size: 18px;
    text-shadow: -0.5px 0 black, 0 .5px black, .5px 0 black, 0 -.8x black;
    color: #fff;
    line-height: 165%;
  }




      /*----- Members -----*/

.divider{
  margin: 10px 93px 15px 93px;
}


      /* Josh */
.joshpic img{
  border-radius: 5%;
  border: .9px solid black;
  margin: 90px;

}

.josh{
  margin: -395px 90px 0px 370px;
  width: 61%;
  height: 100%;
  overflow: hidden;
}

  .josh h1{
    position: relative;
    top: 0px;
    left: 10px;
  }

  .josh h2{
    position: relative;
    top: 10px;
    left: 8px;

    font-size: 18px;
    font-style: italic;
    font-weight: normal;
  }

  .josh ul{
    position: relative;
    top: 20px;
    left: 25px;

    font-size: 18px;
    line-height: 30px;
  }

  .josh p{
    position: relative;
    left: 81%;

    font-size: 20px;
    line-height: 30px;
    color: rgba(0,0,0, 0.35);
    font-style: italic;
  }


      /* Ibrahim */

.ibrahimpic img{
  border-radius: 5%;
  border: .9px solid black;
  margin: 90px;

}

.ibrahim{
  margin: -395px 90px 0px 370px;
  width: 61%;
  overflow: hidden;
  /* border: 2px solid; */
}

  .ibrahim h1{
    position: relative;
    top: 0px;
    left: 10px;
  }

  .ibrahim h2{
    position: relative;
    top: 10px;
    left: 8px;

    font-size: 18px;
    font-style: italic;
    font-weight: normal;
  }

  .ibrahim ul{
    position: relative;
    top: 20px;
    left: 25px;

    font-size: 18px;
    line-height: 30px;
  }

  .ibrahim p{
    position: relative;
    left: 81%;

    font-size: 20px;
    line-height: 30px;
    color: rgba(0,0,0, 0.35);
    font-style: italic;
  }

      /* Yaqoub */

.yaqoubpic img{
  border-radius: 5%;
  border: .9px solid black;
  margin: 90px;

}

.yaqoub{
  margin: -395px 90px 0px 370px;
  width: 61%;
  height: 100%;
  overflow: hidden;
}

  .yaqoub h1{
    position: relative;
    top: 0px;
    left: 10px;
  }

  .yaqoub h2{
    position: relative;
    top: 10px;
    left: 8px;

    font-size: 18px;
    font-style: italic;
    font-weight: normal;
  }

  .yaqoub ul{
    position: relative;
    top: 20px;
    left: 25px;

    font-size: 18px;
    line-height: 30px;
  }

  .yaqoub p{
    position: relative;
    left: 79%;

    font-size: 20px;
    line-height: 30px;
    color: rgba(0,0,0, 0.35);
    font-style: italic;
  }



    /*----- Footer -----*/
.footer{
  margin-top: 150px;
  height: 130px;
  background: rgb(18,18,25);
  background: linear-gradient(90deg, rgba(18,18,25,1) 0%, rgba(19,32,42,1) 35%, rgba(4,58,69,1) 100%);
  }
.footer p{
  position: relative;
  top: 30px;
  font-size: 18px;
  color: #ffff;
  text-align: center;
  line-height: 180%;
  }
.footer hr{
border-style: 6px groove;
color: grey;
  }


  /*----- Mobile -----*/
@media(max-width: 700px){
  .header{
  background-size: cover;
  }
  .text-box h1{
  font-size: 20px;
  }
  .text-box p{
  font-size: 9px;
  }
}
