* {
  font-family: "Nunito";
  --body-background: #000;
  --primary: #38e638;
  --secondary: #fff;
}

.text-center {
  text-align: center;
}
.text-left {
  text-align: left;
}
.text-right {
  text-align: right;
}
.custom-max-width {
  max-width: 80%;
  margin: 0 auto;
}
.margin-top-3{
  margin-top: 30px;
}

body {
  background-color: #000;
  color: var(--secondary);
  position: relative;
}
.banner {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  width: 100%;
  display: block;
  height: 100vh;
  filter: blur(10px);
  z-index: -1;
}

.header {
  height: 60px;
  display: flex;
  align-items: center;
}

.headline {
  max-width: 100%;
  width: 100%;
  margin: 0 auto;
  padding-top: 5%;

  display: flex;
  flex-direction: column;
  align-items: center;
}
.headline .titulo {
  color: var(--primary);
  font-weight: 600;
  font-size: 64px;
  line-height: 24px;
}
.headline .titulo span {
  padding-left: 5px;
  color: var(--secondary);
  font-weight: 300;
}
.headline .subtitulo {
  font-weight: 100;
  font-size: 30px;
  letter-spacing: 3px;
}
.headline .buttons {
  display: flex;
  gap: 10px;
  justify-content: space-between;
}

.list-li {
  margin: 0;
  padding: 0;
  list-style: none;
}

.list-li li {
  display: inline-block;
  text-align: center;
  margin-right: 10px;
}

.list-li li:last-child {
  margin-right: 0;
}

.list-li li img {
  border-radius: 5px;
}

/* global */
.main {
  margin-top: 40px;
  display: block;
}
.info {
  max-width: 400px;
}
.info-title::after,
.work-title::after {
  content: "_";
  color: transparent;
  width: 30px;
  height: 2px;
  display: block;
  background-color: var(--primary);
}
.info-content,
.work-content {
  font-weight: 300;
  color: #fff !important;
  font-size: 19px;
}

.social {
  display: flex;
  gap: 10px;
  text-align: center;
}
.social img {
  border-radius: 5px;
}

/* REDES */
.container-redes {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.list-redes {
max-width: 400px;
    width: 100%;
  list-style: none;
}
.list-redes ul {
  margin: 0;
  padding: 0;
}
.list-redes li {
  margin-bottom:  20px;
  background-color: #0000004e;
  padding: 3px 7px;
  text-align: center;
  border: 1px solid var(--primary);
  border-radius: 3px;
}
.list-redes li:last-child { margin-bottom: 0;}
.list-redes li a{
  text-decoration: none;
  color: var(--primary);
}

@media screen and (max-width: 42em) {
  .custom-max-width {
    max-width: 95%;
  }
  .banner {
    height: -webkit-fill-available;
    filter: blur(10px);
  }
}
