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

body {
  width: 100%;
  margin: 0 auto;
}

.container {
  width: 100%;
  margin: 0 auto;
}

.container-bg {
  content: "";
  display: block;
  position: absolute;
  background-image: linear-gradient(to bottom, rgba(139, 157, 173, 0.1), hsl(210, 13%, 63%)), url("./assets/25332.jpg");
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: 50% 0;
}

.container-main {
  max-width: 1040px;
  margin: 0 auto;
}

.container-header {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}
.container-header h1 {
  margin-top: 2rem;
  font-family: "Calistoga", serif;
}
.container-header h1 span {
  font-family: "Istok Web", sans-serif;
  font-size: 3rem;
  font-weight: 900;
  color: #574848;
}
.container-header img {
  width: 150px;
  border: 10px solid #574848;
  border-radius: 100px;
  transition: transform 1 ease-in-out;
}
.container-header img:hover {
  transform: scale(1.1);
  border: none;
}
.container-header h2 {
  margin-top: 1rem;
  font-size: 1.2rem;
  padding: 10px;
  background-color: #574848;
  color: white;
  border-radius: 30px;
  font-family: "Istok Web", sans-serif;
  font-weight: lighter;
}

.redes {
  margin-top: 1rem;
  background-color: rgba(87, 72, 72, 0.5);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.redes .rede {
  margin: 0.5rem 0;
  padding: 10px;
  background-color: white;
  border-radius: 30px;
  color: #574848;
  text-decoration: none;
  transition: transform 0.3s;
}
.redes .rede:hover {
  transform: scale(1.1);
  background-color: #574848;
  color: white;
}

.tecnology {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-top: 0.5rem;
  font-size: 4rem;
}/*# sourceMappingURL=styles.css.map */