/*geral*/
*{
  margin: 0;
  padding: 0;
  font-family: Arial, Helvetica, sans-serif;
  box-sizing: border-box;
}
h1,h2,h3{
  color: #000;
}
p{
  color: #333;
}
/*navbar*/
.navbar-container{
  width: 100%;
  height: 80px;
  background-color: rgb(255, 0, 195);
  padding: 0 2rem;
}
nav{
  position: relative;
}
.navbar-items{
  position: absolute;
  right: 0;
  height: 80px;
  line-height: 80px;
  margin: 0;
  display: inline-block;
}
.logo{
  width: 50px;
  margin-top: 15px;
}
.navbar-items li {
  display: inline-block;
  text-transform: uppercase;
  font-weight: bold;
  margin-left: 25px;
}
.navbar-items a{
  color: #fff;
  text-decoration: none;
  transition: 0,5s;
}
.navbar-items a:hover{
  color: #000;
}
.default-btn{
  padding: 15px 20px;
  background-color: rgb(255, 0, 195);
  border-radius: 1dvh;
}
.navbar-items .default-btn:hover{
  background-color:#fff; 
  color: rgb(255, 0, 195);
}
/*main banner*/
.main-banner{
  background-image: url("../img/fundo.jpg");
  background-size: cover;
  background-position: center;
  padding: 10rem 0;
}
.fas{
  font-size: 60px;
  margin-bottom: 15px;
}
.fa-solid{
  font-size: 60px;
  margin-bottom: 15px;
}
.fa-rocket{
  color: rgb(255, 0, 195);
}
.fa-address-book{
  color: rgb(255, 0, 195);
}
.fa-code{
  color: rgb(255, 0, 195)
}
.services-container h3{
  margin-bottom: 25px;
}
.services-container p{
  line-height: 24px;
}
.icons{
  font-size: 70px;
}
.language-container h3{
  font-size: 30px;
  margin-bottom: 20px;
}
.icons a{
  color: #000;
}
.icons a:hover{
  color: rgb(255, 0, 195);
}
.language-container{
  margin-top: 30px;
  margin-bottom: 30px;
  text-align: center;
}
.len{
  font-size: 20px;
  font-weight: lighter;
  margin-bottom: 10px;
}
/*contact form*/
.contact-container{
  text-align: center;
  padding: 5rem 0;
  background-color: rgb(255, 0, 195);
  color: white;
}
.contact{
  padding: 15px;
  margin-top: 0;
}
.contact-container h2{
  font-size: 36px;
  margin-bottom: 10px;
}
.contact-container p {
  font-size: 20px;
  margin-bottom: 10px;
  color: white;
}
.contact-container .links{
  margin-top: 10px;
  text-transform: uppercase;
  display: flex;
  text-align: center;
  padding-top: 10px;
  display: inline-block;

}
.contact-container .links a{
  text-decoration: none;
  color: black;
  padding: 20px;
  background-color: white;
  border: 2px solid black;
  border-radius: 15px;
  cursor: pointer;
}
.contact-container .links a:hover{
  background-color: black;
  color: rgb(255, 0, 195);
}
footer{
  margin-top: 10px;
  font-weight: bold;
  text-align: center;
}
/*Page about*/

#me{
  height: 500px;
  border-radius: 50%;
  box-shadow: 1px 1px 5px black;
}
.me{
  padding: 30px;
  background-color: rgba(255, 0, 195, 0.714);
  text-align: center;
  margin: auto;
}
.about{
  padding: 30px;
  margin: 100px auto;
  text-align: center;
}
.text{
  text-indent: 20px;
  margin-bottom: 20px;
  width: 300px 200px;
  font-weight: bold;
  color: #000;
}
.about h2{
  margin-top: 5px;
  margin-bottom: 10px;
  font-size: 30px;
  color: rgb(255, 0, 195);
  text-shadow: 1px 2px 2px rgba(255, 0, 195, 0.412);
}
.fa-address-card{
  color: rgb(255, 0, 195);
  text-shadow: 1px 2px 2px rgba(255, 0, 195, 0.412);
  font-size: 25px;
}
.fa-bullseye{
  color: rgb(255, 0, 195);
  text-shadow: 1px 2px 2px rgba(255, 0, 195, 0.412);
  font-size: 30px;
}
.fa-computer{
  color: rgb(255, 0, 195);
  text-shadow: 1px 2px 2px rgba(255, 0, 195, 0.412);
  font-size: 30px;
}
.fa-magnifying-glass{
  color: rgb(255, 0, 195);
  text-shadow: 1px 2px 2px rgba(255, 0, 195, 0.412);
  font-size: 30px;
}
/*Responsividade*/

/*small laptops a partir de 1100px */
@media (max-width: 1100px) {
  .projects-container{
    width: 95%;
  }
  .project{
    margin: 0 5px;
  }
  }
  /* tablet 900px*/
  @media (max-width: 900px){
    .main-banner p{
      padding: 0 6rem;
    }
  }
  /*celular 576px*/
  @media (max-width:576px){
    html,body{
      overflow-x:hidden ;
    }
    .navbar-items li{
      font-size: 12px;
      margin-left: 10px;
    }
    .services-container ul{
      flex-direction: column;
    }

    .projects-container{
      width: 100%;
    }
    .project-check{
      flex-direction: column;
    }
    .project{
      margin-top: 10px;
      width: 100%;
      max-width: 100%;
    }
    .contact-container{
      width: 100%;
      margin: 0;
    }
    .contact-container p{
      font-size: 15px;
    }
    .contact-container .links{
      flex-direction: column;
      padding-top: 10px;
    }
  }
