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

html {
  scroll-behavior: smooth;
}

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


/*Inicio HEADER*/
.nav {
  background-color: #181818;
  height: 80px;
  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: 24px;
}

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

.nav-list a:hover {
  background-color: #FFFF;
}

/*FIM HEADER*/



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

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


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

.call-to-action {
  cursor: pointer;
  background-color: #FFFFFF;
  border: 0;
  padding: 14px;
  border-radius: 4px;
  font-size: 18px;
  font-weight: bold;
  transition: 0.9s;
}

.main a {
  text-decoration: none;
  color: black;
}

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

/*FIm Main*/

/*Inicio about*/
.about {
  background-color: #FFFFFF;
  width: 100%;
  padding-left: 10%;
  padding-right: 10%;
  padding-top: 80px;
  padding-bottom: 80px;

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

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

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

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

/*FIm About*/

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

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

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

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

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

.projects img:hover {
  opacity: 1;
}

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

/*FIm project*/


/*Inicio footer*/
footer {
  width: 100%;
  background-color: #181818;
  padding: 60px 0;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #FFFFFF;
}

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

footer p {
  margin-left: 12px;
}

/*FIm footer*/



/*Responsividade*/
@media (max-width: 1050px) {

  /*Inicio main*/
  /*quando for menor que 1050 diminuir a font*/
  .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: 27.5%;
  }

  /*fim projeto*/

  /*Inicio rodape*/
  footer{
    flex-direction: column;
  }
  footer h3{
    font-size: 24px;
    margin-bottom: 8px;
  }
  footer p {
    margin: 0;
  }
  /*Inicio rodape*/
}