*{
  margin:0;
  padding: 0;
  outline: 0;
  box-sizing: border-box;  
}

body{
  font-family: 'Roboto', sans-serif;    
}

html{
  scroll-behavior: smooth; 
}

/* INICIO HEADER */
.nav{
  background-color:#FFFFFF;
  height:134px;
  width:100%;
  display: flex;
  justify-content: flex-end;
  position: sticky; 
  top:0;
  z-index: 9;
}

.nav-list{
  display: flex;
  align-items: center;
  list-style: none;
  margin-right: 10px;
}

.nav-list a{
  text-decoration: none;
  color: #DDD;
  padding: 30px;
}

.nav-list a:hover{
  color: #FFFFFF;
}
/* FIM HEADER */


/* INICIO MAIN */
.main{
  width:100%;
  background-color: #000;  
  height: calc(115vh - 80px);
  background-image: url("images/programador.png");
  display: flex;
  align-items: center;
  padding-left: 10%;
}

.main h1{
  color: #F4A460;
  font-size: 54px;
}

.main h2{
  color: #B0E0E6;
  font-size: 60px;  
}

.main h3{
  color: #DCDCDC;
  font-size: 4px;
}

.main p {
  font-size: 24px;
  font-style: italic;
  color: #1e96FC;
  margin-top: 10px;
  margin-bottom: 35px;
}

.call-to-action{
  cursor: pointer;
  background-color: ;
  border: 5;
  padding: 5px;
  border-radius:10px;
  font-size: 10px;
  font-weight: bold;
  transition: 0.8s;
}

.call-to-action:hover{
  transform: scale(1.2);
}

.main a{
  text-decoration: none;
  color: #181818;
}
/* FIM MAIN */

/* INICIO ABOUT */
.about{
 background-color: #B0E0E6;
 width: 100%; 
 padding-left: 10%;
 padding-right: 10%;
 padding-top:170px;
 padding-bottom: 113px;

 display: flex;
 align-items: center;
 justify-content: space-between;
}

.about div{
  max-width: 50%;
  padding-right: 40px;
}

.about img{
  max-width: 450px;
  border-radius: 8px;
}

.about div h2{
  font-size: 32px;
  margin-bottom: 14px;
}
/* FIM ABOUT */

/* INICIO PROJECTS */
.projects{
  width:100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 109px 0;
}

.projects h2{
  font-size: 32px;
  margin-bottom: 8px;
  margin-top: 20px;
}

.projects p{
  margin-bottom: 40px;
  font-style: italic;
}

.project-list{
  width: 100%;
  margin-bottom: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.project-list1{
  width: 100%;
  margin-bottom: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.projects img{
  width:100%;
  margin-left: 0.5%;
  margin-right: 0.5%;
  opacity: 0.8;
  transition: 0.9s;
}

.projects img:hover{
  opacity: 5;
}

.action{
  background-color: #FFFFFF;
  border:0;
  padding: 12px 28px;
  border-radius: 4px;
  font-size: 18px;
  color: #FFFFFF;
  margin-top: 18px;
  cursor: pointer;
}
/* FIM PROJECTS */

/* INICIO RODAPE */
footer{
  width: 100%;
  background-color: #FFE4C4;
  padding: 10px 0;
  display: flex;
  justify-content: center;
  align-items: center;
  color:#FFE4C4;
}

footer a {
  text-decoration: none;
  color: #FFE4C4;
}

footer p {
  margin-left: 12px;
}
/* FIM RODAPE */


/* RESPONSIVIDADE */

@media (max-width: 1050px){
  /* INICIO MAIN */
  .main h1{
    font-size: 45px;
  }

  .main p{
    font-size: 18px;
  }

  .main{
    background-size: cover;
  }
  /* FIM MAIN */

  /* INICIO SOBRE */
  .about{
    flex-direction: column;
    padding-top: 80px;
    padding-left: 0;
    padding-right: 0;
    padding-bottom: 0;
  }

  .about div{
    max-width: 80%;
  }

  .about div h2{
    font-size: 45px;
  }

  .about img{
    width: 80%;
    margin-top: 30px;
  }
  /* FIM SOBRE */

  /* INICIO PROJETOS */
  .projects img{
    width: 37.5%;
  }
  /* FIM PROJETOS */

  /* INICIO RODAPE */
  footer{
    flex-direction: column;
  }

  footer h3{
    font-size: 24px;
    margin-bottom: 8px;
  }

  footer p{
    margin:0;
  }
  /* FIM RODAPE */  

}

.link-neutro{
  color:#363636;
  text-decoration: none;
}