:root{
  
  --main-color: #000;
  --color-1: #e91e63;
  --color-2: #f5ae10;
  --color-3: #09d69c;
  --bg-dark: #2b2cff;
  --main-to-dark-color: var(--main-color);
}

body{
  font-family: sans-serif;
  font-size: 16px;
  font-weight: 400;
  overflow-x: hidden;
  color: #fff;
  line-height: 1.5;
}

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

.home{
  height: 100vh;
  padding: 150px 0;
  position: relative;
  z-index: 1;
  background-image: url('./img/hero.png');
  background-position: center top;
  background-size: cover;
  background-attachment: fixed;
  background-repeat: no-repeat;
  display: flex;
  justify-content: center;
  align-items: center;
}
.home .bg {
  position: absolute;
  background-color: #57575a;
  z-index: 5;
  width: 100vw;
  height: 100vh;
  opacity: 0.6;
}

.home .info {
  width: 100%;
  height: 100vh;
  position: absolute;
}

.home .info .infor {
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: absolute;
  z-index: 10000;
  margin-left: auto;
margin-right: auto;
left: 0;
right: 0;
text-align: center;
}
.home .info .redes {
  width: 250px;
  position: absolute;
  right: 0;
  top: 0;
  height: 100vh;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  z-index: 10000;
}

.home .info .infor h1 {
  font-size: 85px; 
}

.home .info .infor img {
  width: 300px;
  height: 300px;
}


.home .info .redes ul {
  margin-right: 20px;
  list-style: none;
}

.home .info .redes ul li {
  margin-bottom: 50px;
}

.home .info .redes ul li a {
  text-decoration: none;
  color: #fff;
}

.home .info .redes ul li a i {
  font-size: 20px;
}

.home .logo-dev {
  position: absolute;
  bottom: 20px;
  right: 20px;
  z-index: 10000;
}

.home .logo-dev img {
  width: 80px;
  height: auto;
  opacity: 0.8;
  transition: opacity 0.3s ease;
}

.home .logo-dev img:hover {
  opacity: 1;
}

@media (min-width: 375px) { 
  .home .info .infor h1 {
    font-size: 55px; 
  }
 
}


@media (min-width: 768px) { 
  .home .info .infor h1 {
    font-size: 85px; 
  }
 
}