/* Basic Elements */
body, html {
    height: 100%;
    margin: 0;
    text-align: center;
}
/* Navbar */
.navbar{
  background: rgba(0, 112, 255, 0.5);
}
.nav-bg{
  background: rgba(0, 112, 255, 0);
  -webkit-transition:background 1s;
  -moz-transition:background 1s;
  -o-transition:background 1s;
  transition:background 1s
}
.nav-bg:hover {
  background:rgba(0, 112, 255, 1);
}

/* Lander */
.lander-mobile{
  height: 120vh !important;
  top: auto !important;
}
.lander-container{
  height: 100vh;
}
.lander-image {
    height: 100vh;
    position:fixed;
    top:0;
    right:0;
    bottom:0;
    left:0;
    z-index:0;
}
.lander-text{
  width: 90%;
  position: relative;
  top: 50%;
  transform: translateY(-50%);
  font-size: 10vw;
  color: white;
  height: 2em;
  display: inline-block;
}
.title-break{
  border-width: 3px;
  max-width: 200px;
  border-color: white;
  margin: 0px auto;
}
.main-break{
  max-width: 40%;
}
.subscript{
  font-size: 0.3em;
  margin-top: 0px;
  text-align: right;
  max-width: 70%;
}
.sub-2{
  margin-bottom: 0px;
  position: relative;
  left: 30%;
  text-align: left;
}
.title-text{
  margin: 0px;
}
.sub-2-1{
  display: none;
}
.down-icon{
  display: inline-block;
  position: absolute;
  overflow: hidden;
  font-size: 4em;
  height: 1em;
  top: 90vh;
  margin-left: auto;
  margin-right: auto;
  left: 0;
  right: 0;
}
.fa-angle-double-down{
  transition: all 0.3s;
  -webkit-transition: all 0.3s;
  vertical-align: middle;
}
.down-arrow-text{
  display: none;
  font-size: 0.5em;
  vertical-align: middle;
}

/* Header */
.main-header{
  height: 35vh;
  position: relative;
  background-color: rgba(0, 112, 255, 0.8);
  padding: 20px 0px;
}
.header-text{
  text-align: center;
}
.text-icon:hover{
  color: white;
}
.text-sub{
  font-size: 1.2em;
}
.text-center{
  margin-top: 30px;
}
.qualities{
  transition: all 0.3s;
  -webkit-transition: all 0.3s;
}
.qualities:hover{
  color: white;
}
.title{
  color: white;
}

/* Main page content */
.main-page-content{
  height: 65vh;
  text-align: center;
  position: relative;
  color: white;
  padding: 1.5em 0px;
}
.progress{
  background-color: rgba(50,50,50,0.7);
}
.skill{
  margin-top: 10px;
  text-align: left;
}
.info-box{
  padding: 2.5em;
}
.standard-image{
  width: 70%;
  margin: 0.5em;
}
.education-text{
  font-size: 1.7em;
  vertical-align: middle;
}
.very-small-image{
  width: 2em;
}
.info-break{
  margin: 20px auto;
}
.downjs-2{
  top: 190vh;
}

/* Projects */
.project{
  background-color: rgba(0, 112, 255, 0.8);
  padding: 0px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  height: 50vh;
  overflow: hidden;
}
.project:after {
  content: attr(data-content);
  text-align: center;
  line-height: 48vh;
  color:#fff;
  position:absolute;
  width:100%; height:100%;
  top:0; left:0;
  background:rgba(0,0,0,0.6);
  opacity:0;
  transition: all 0.2s;
  -webkit-transition: all 0.2s;
}
.project-pic{
  height: 100%;
  width: auto;
}
.project:hover:after {
    opacity:1;
}
.projects-container{
  position: relative;
}

@media screen and (max-width: 991px){
  .downjs-1{
    font-size: 3em;
  }
  .downjs-2{
    display: none;
  }
  .main-header{
    height: auto;
  }
  .main-page-content{
    height: auto;
  }
}
@media screen and (max-height: 738px){
  .downjs-1{
    font-size: 3em;
  }
  .downjs-2{
    display: none;
  }
  .main-header{
    height: auto;
  }
  .main-page-content{
    height: auto;
  }
}
