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

.max-width {
    max-width: 1300px;
    padding: 0 80px;
    margin: auto;
}

.navbar {

      position: fixed;
      padding: 30px 0;
      width: 100%;
      font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;

} 

.navbar .max-width {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.navbar .logo a {
    color: red;
    margin-left: -80px;
    font-size: 35px;
    font-weight: 600;
    font-family: 'Teko', sans-serif;
    text-transform: uppercase;
    animation: glow 1s ease-in-out infinite
}
@keyframes glow {
    from {
      text-shadow: 0 0 5px #ff00e6;
    }
    to {
      text-shadow: 0 0 10px #f70f0fc0, 0 0 20px #ffea00;
    }
}

.navbar .menu li{
    list-style: none;
    display: inline-block;
}

.navbar .menu li a {
    color: white; 
    font-size: 18px;
    font-weight: 500;
    margin-left: 25px;
    transition: color 0.3s ease;
}
.navbar .menu li a:hover{
    color: crimson;
}




.home {
    display: flex;
    height: 100vh;
    color: black;
    min-height: 500px; 
    background-color: black;
     
}

.home .max-width {
    margin: auto 0 auto 40px;
}

.home .home-content .text-1{ 
    color: white;
    font-size: 27px;

}

.home .home-content .text-2{ 
    color: white;
    font-size: 75px;
    font-weight: 600;
    margin-left: -3px;
    letter-spacing: 5px;
    animation: glitch 1s linear infinite;
}
@keyframes glitch{
  2%,64%{
    transform: translate(2px,0) skew(0deg);
  }
  4%,60%{
    transform: translate(-2px,0) skew(0deg);
  }
  62%{
    transform: translate(0,0) skew(5deg); 
  }
}

div:before,
div:after{
  content: attr(title);
  position: absolute;
  left: 0;
}

div:before{
  animation: glitchTop 1s linear infinite;
  clip-path: polygon(0 0, 100% 0, 100% 33%, 0 33%);
  -webkit-clip-path: polygon(0 0, 100% 0, 100% 33%, 0 33%);
}

@keyframes glitchTop{
  2%,64%{
    transform: translate(2px,-2px);
  }
  4%,60%{
    transform: translate(-2px,2px);
  }
  62%{
    transform: translate(13px,-1px) skew(-13deg); 
  }
}

div:after{
  animation: glitchBotom 1.5s linear infinite;
  clip-path: polygon(0 67%, 100% 67%, 100% 100%, 0 100%);
  -webkit-clip-path: polygon(0 67%, 100% 67%, 100% 100%, 0 100%);
}

@keyframes glitchBotom{
  2%,64%{
    transform: translate(-2px,0);
  }
  4%,60%{
    transform: translate(-2px,0);
  }
  62%{
    transform: translate(-22px,5px) skew(21deg); 
  }
}

.home .home-content .text-3{ 
    color: white;
    font-size: 25px;
    margin: 5px 0;
    letter-spacing: 2px;

}
.home .home-content .text-2 span{
    color: red;
} 

.home .home-content .text-4{ 
    color: white;
    font-size: 20px;
    margin: 5px 0;
}

.home .home-content .text-4 span{
    color: red;
}

.img-prof{
margin-top: 0%;
max-width: 35%;
margin-left: 60%;
position: fixed;
}
.home .home-content .bg-img{
  margin-right: 20%;
  position: ms page 10px;;
  position: fixed;
  max-width: 55%;
  margin-bottom: 10%;
}
.btn{
    background-color: pink;
    max-width: 11.5%;
}