body {
  background-image: url('../img/Fundo-Site.png');  
}

main {
  padding: 3%;

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

/* main-content */
main .main-content {
  display: flex;
  flex-direction: column;  
}

main .main-content h2 {
  margin-bottom: 2%;
  font-size: 1.8em;
  color: #eeeeeecc;
}

main .main-content .text {
  margin-bottom: 5%;
  color: #eeeeeecc;
}

main .main-content .text p {
  width: 80%;
  font-size: 1.1em;
  font-weight: 300;
  line-height: 1.6;
}

/* cards */

main .techs .cards-container {
  display: flex;
  align-items: center;
}

main .techs .cards-container .card {
  width: 110px;
  height: 110px;
  background-color: #eeeeeecc;
  border-radius: 8px;
  margin-right: 0.9em;
  margin-left: 0.9em;
  cursor: pointer;

  display: flex;
  align-items: center;
  justify-content: center;

  transition: box-shadow 0.25s ease-in-out;
}

main .techs .cards-container .card img {
  width: 80%;
}

main .techs .cards-container .card:hover {
  box-shadow: 0px 0px 40px #00e0ff;
}

/* figure */

main figure {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

main figure img {
  width: 400px;
  height: 400px;
  border-radius: 200px;

  margin-bottom: 6%;
  cursor: pointer;
  border: 2px #00e0ff solid;
  transition: 0.2s ease-in-out;
}

main figure img:hover {
  box-shadow: 0px 0px 40px #00e0ff;
  
}