*{
    padding: 0px;
    margin: 0px;
    box-sizing: border-box;
    font-family: 'Comic Neue', cursive;
    background-color: none;
}

/* Nav-Bar */
.logo{
    font-family: 'Pacifico', cursive;
}
nav{
    background: #3a6cf4;
    height: 80px;
    width: 100%;
  }
  label.logo{
    color: white;
    font-size: 35px;
    line-height: 80px;
    padding: 0 100px;
    font-weight: bold;
  }
  nav ul{
    float: right;
    margin-right: 20px;
  }
  nav ul li{
    display: inline-block;
    line-height: 80px;
    margin: 0 5px;
  }
  nav ul li a{
    color: white;
    font-size: 17px;
    padding: 7px 13px;
    border-radius: 3px;
    text-transform: uppercase;
    text-decoration: none;
  }
  
  nav ul li a:hover{
    background-color: #fff;
    color: #3a6cf4;
    transition: .5s;
  }
  .checkbtn{
    font-size: 30px;
    color: white;
    float: right;
    line-height: 80px;
    margin-right: 40px;
    cursor: pointer;
    display: none;
  }
  #check{
    display: none;
  }
  @media (max-width: 952px){
    label.logo{
      font-size: 30px;
      padding-left: 50px;
    }
    nav ul li a{
      font-size: 16px;
    }
  }
  @media (max-width: 858px){
    .checkbtn{
      display: block;
    }
    ul{
      position: absolute;
      width: 100%;
      height: 100vh;
      background: #2c3e50;
      top: 80px;
      left: -100%;
      text-align: center;
      transition: all .5s;
    }
    nav ul li{
      display: block;
      margin: 50px 0;
      line-height: 30px;
    }
    nav ul li a{
      font-size: 20px;
    }
    a:hover,a.active{
      background: none;
      color: #0082e6;
    }
    #check:checked ~ ul{
      left: 0;
    }
  }
  

/* Landing Page */
#landing-page {
    height: 100vh;
    width: 100%;
    background-image:linear-gradient(rgba(9, 12, 14, 0.6),rgba(9, 19, 24, 0.6)), url(images/background1.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    z-index: -2;
}

.landing-text h1{
    color: white;
    margin-top: 30vh;
    font-size: 30px;
    font-family: 'Courgette', cursive;
}


span{
    color:#3a6cf4;
}

.landing-text h2{
    color: white;
    font-size: 70px;
    font-family: 'Rancho', cursive;
    letter-spacing: 4px;
    width: 0;
    overflow: hidden;
    white-space: nowrap;
    border-right: 3px solid #3a6cf4;
    animation: text 6s steps(11) infinite alternate;
}
@keyframes text{
    0%{
        width: 0ch;
    }
    50%{
        width: 11ch;
    }
  
}

.landing-text h3{
    color: white;
    font-size: 20px;
    font-family: 'Comic Neue', cursive;
    letter-spacing: 0.5px;
}

.btn1{
    background: #3a6cf4;
    color: white;
    font-size: 16px;
    padding: 10px;
    font-weight: 500;
    border-radius: 10px;
    width: 100px;
    margin-top: 10px;
    margin-right: 10px;
    border: none;
    transition: 0.7s ;
}
.btn1:hover{
    background: white;
    color:#3a6cf4;
    font-size: 16px;
    padding: 10px;
    font-weight: 500;
    border-radius: 10px;
    width: 100px;
    margin-top: 10px;
    margin-right: 10px;
    border: none;
}
.btn2{
    background: white;
    color: #3a6cf4;
    font-size: 16px;
    padding: 10px;
    font-weight: 500;
    border-radius: 10px;
    width: 100px;
    margin-top: 10px;
    margin-right: 10px;
    border: none;
    transition: 0.7s;
}



.btn2:hover{
    background: #3a6cf4;
    color: white;
    font-size: 16px;
    padding: 10px;
    font-weight: 500;
    border-radius: 10px;
    width: 100px;
    margin-top: 10px;
    margin-right: 10px;
    border: none;
}

/* Social Login */
.social-logins{
    margin-top: 20px;
}
a:hover{
    background-color: rgba(255, 165, 0, 0);
    opacity: 2;

}

.fa-facebook{
    content: "\f09a";
    font-size: 24px;
    color: white;
    margin-right: 10px;
    cursor: pointer;
}
 
.fa-instagram {
    content: "\f09a";
    font-size: 24px;
    color: white;
    margin-right: 10px;
    cursor: pointer;
    background-color: none;
}
.fa-twitter {
    content: "\f09a";
    font-size: 24px;
    color: white;
    margin-right: 10px;
    cursor: pointer;
    background-color: none;
}
.fa-linkedin {
    content: "\f09a";
    font-size: 24px;
    color: white;
    margin-right: 10px;
    cursor: pointer;
    background-color: none;
}
.fa-github{
    content: "\f09a";
    font-size: 24px;
    color: white;
    cursor: pointer;
    background-color: none;
}

/* About Me */
#about{
    margin-top: 0px;
}
#about h1{
    margin-top:40px;
}

#about .about-right{
    text-align: justify;
    margin-left: 0px;
}
@media (max-width:768px){
    .about-left{
        display: flex;
        justify-content: center;
    }
    
}
#about h1{
    color: #3a6cf4;
}

/* Resume */
#resume{
    background-color: #000016;
}
.margin-resume{
    margin-bottom: 70px;
}
#resume h1{
    margin-top: 40px;
    color: #3a6cf4;
}
.accordion-body h3{
    font-size: 20px;
}
.progress{
    margin-top:0 20px 20px 20px;
}



/* Services */

#services h1{
  color: #3a6cf4;
}
.fa-globe:before {
    content: "\f09a";
    font-size: 54px;
    color: #3a6cf4;
    cursor: pointer;
}

.fa-globe-asia:before {
    content: "\f09a";
    font-size: 54px;
    color: #3a6cf4;
    cursor: pointer;
}

.fa-browser:before {
    content: "\f09a";
    font-size: 54px;
    color: #3a6cf4;
    cursor: pointer;
}

/* Contact Me */

#contact h1{
    color: #3a6cf4;
}
.fa-phone:before {
    content: "\f09a";
    font-size: 54px;
    color: #3a6cf4;
    cursor: pointer;
}
.fa-map-marker:before {
    content: "\f09a";
    font-size: 54px;
    color: #3a6cf4;
    cursor: pointer;
}
.fa-envelope:before {
    content: "\f09a";
    font-size: 54px;
    color: #3a6cf4;
    cursor: pointer;
}
#contact h1{
    margin-top: 20px;
}

#contact .btn3, #about .btn3{
    color: white;
    background: #3a6cf4;
    font-size: 16px;
    padding: 10px;
    font-weight: 500;
    border-radius: 10px;
    width: 100px;
    margin-top: 10px;
    margin-right: 10px;
    border: none;
    margin-bottom: 20px;
    transition: 0.3s;
}

#contact .btn3:hover, #about .btn3:hover{
    color: white;
    background: #143180;
    font-size: 16px;
    padding: 10px;
    font-weight: 500;
    border-radius: 10px;
    width: 100px;
    margin-top: 10px;
    margin-right: 10px;
    border: none;
    margin-bottom: 20px;
    transition: 0.3s;
}


.navbar-nav{
    margin-left: auto;
}
.navbar-nav .nav-item{
    margin-left: 25px;
    font-size: 18px;
    font-weight: 500;
}
@media (max-width:350px){
    .landing-text h2{
        font-size: 45px;
    }
}




/* Footer */ 
.footer{
    text-align: center;
    background: #000016;
    color: white;
}
.footer p{
    margin-bottom: 0px;
}

.card-text{
    text-align: center;
}

