body {
  background-color: rgba(0, 0, 0, 0.753);
  font-family: Arial, Helvetica, sans-serif;
}

header {
  background-color: black;
  display: flex;
  flex-flow: row wrap;
  align-items: center;
  justify-content: space-between;
  padding: 15px;
}

.marca {
  font-size: 45px;
  color: white;
}

span {
  color: #ffa500;
}

.navegacao {
  font-size: 18px;
}

.navegacao a {
  padding: 7px 10px;
  margin: 0 5px;
  border-radius: 10px;
  text-decoration: none;
  color: white;
  background-color: rgb(24, 24, 24);
  box-shadow: 1px 1px 5px rgb(46, 46, 46);
}

.navegacao a:hover {
  color: orange;
  transition: 0.2s ease-in-out;
}

.nomep {
  padding: 15px;
}

main {
  background-color: #1c1c1c;
  color: white;
}

main p {
  font-size: 30px;
}

section.intro {
  width: 100%;
  height: 55vh;
  background-image: url(../imagens/teclado_preto02.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center top;
  text-align: center;
  padding-top: 350px;
  margin: auto;
  color: white;
}

section.intro p {
  font-size: 35px;
}

section.intro h1 {
  font-size: 60px;
}
section.intro strong {
  color: orange;
}

section.intro img {
  width: 45px;
  height: 45px;
  margin: 20px;
  border-radius: 10px;
  background-color: rgb(60, 60, 60);
}

section hr {
  margin: 0;
  padding: 0;
  height: 2px;
  width: 100vw;
  border-radius: 25px;
  background-color: orange;
}

.topicos {
  margin-top: 10px;
  padding: 20px;
  font-size: 50px;
  text-align: center;
  text-shadow: 1px 3px orange;
  color: rgb(255, 255, 255);
  border-top: 3px solid orange;
}

section.sobre {
  width: 100%;
  display: flex;
  flex-flow: column nowrap;
  justify-content: center;
  align-items: center;
  gap: 15px;
  font-size: 18px;
}

.texto {
  width: 50%;
  font-size: 24px;
}

.texto li {
  list-style-type: none;
}

.iconl {
  margin-top: 20px;
  padding: 20px;
  text-align: center;
}

.iconl img {
  width: 50px;
  height: 50px;
  background-color: rgba(128, 128, 128, 0.384);
  margin: 10px;
  padding: 10px;
  border-radius: 5px;
  box-shadow: 2px 2px 5px black;
}

.projetos {
  width: 60%;
  display: flex;
  flex-flow: row wrap;
  justify-content: center;
  padding: 30px 10px;
  margin: auto;
  gap: 10px;
}

.projeto-item {
  padding: 10px;
}

.projeto__titulo {
  margin: 10px 0;
  padding: 10px;
  text-align: center;
  border: 1px solid orange;
  border-radius: 10px;
}

.projeto__link {
  text-align: center;
  margin: 10px;
}

.projeto__link a{
  color: orange;
}

.projeto__imagem {
  max-width: 450px;
  max-height: 250px;
  border: 3px solid orange;
}

.projeto__linguagens {
  width: 100%;
  display: flex;
  justify-content: center;
  gap: 20px;
}

.projeto__linguagens__item {
  list-style-type: none;
  font-size: 20px;
}

.html{
  color: orange;
}

.css{
  color: lightblue;
}

.javascript{
  color: yellow;
}

footer {
  background-color: rgba(0, 0, 0, 0.644);
  color: white;
  text-align: center;
}
footer p {
  margin: 5px;
}
footer a {
  color: orange;
}

@media (max-width: 480px) {
  header {
    justify-content: center;
    gap: 15px;
  }

  .topicos {
    justify-content: center;
  }

  .texto {
    width: 85%;
  }

  .projetos {
    width: 90%;
  }

  .projeto__imagem {
    width: 100%;
  }
}
