*{
margin:0;
padding:0;
box-sizing:border-box;
font-family:'Poppins',sans-serif;
}

.hero{

height:70vh;

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

position:relative;

overflow:hidden;
}

.overlay{

position:absolute;
top:0px;
width:100%;
height:5%;



}

.content{

position:relative;
top: -90px;
text-align:center;

color:#fff;

animation:fadeUp 1.5s;

padding:20px;

}

.content h3{

font-size: 20px;

letter-spacing:5px;

margin-bottom:1px;

color: #0A1DED;

}

.content h1{

font-size:40px;

font-weight:700;

line-height:25px;

margin-bottom:2px;
margin-top: -15px;
}

.content span{

background:linear-gradient(90deg,#F97316,#DC2626);

background-size:50%;

-webkit-background-clip:text;

-webkit-text-fill-color:transparent;

animation:gradient 6s linear infinite;

}

.typing{

margin:auto;

font-size:20px;

font-weight:200;

white-space:nowrap;

overflow:hidden;

border-right:3px solid #FF0016;
color: red;
width:0;

animation:

typing 6s steps(55,end) infinite,

blink .7s infinite;

}

.btn{

display:inline-block;

margin-top:-10px;

padding:15px 40px;

background:#ff6600;

color:#fff;

text-decoration:none;

font-size:15px;

font-weight:200;

border-radius:20px;

transition:.4s;

}

.btn:hover{

background:#ffd700;

color:#000;

transform:translateY(-5px);

}

@keyframes gradient{

0%{

background-position:0%;

}

100%{

background-position:100%;

}

}

@keyframes typing{

0%{

width:0;

}

40%{

width:55ch;

}

60%{

width:55ch;

}

100%{

width:0;

}

}

@keyframes blink{

50%{

border-color:transparent;

}

}

@keyframes fadeUp{

from{

opacity:0;

transform:translateY(60px);

}

to{

opacity:1;

transform:translateY(0);

}

}

@media(max-width:768px){

.content h1{

font-size:38px;

line-height:50px;

}

.typing{

font-size:18px;

}

.btn{

font-size:18px;

padding:12px 30px;

}

}