.hero h1{
animation:fadeUp 1s ease;
}

.hero p{
animation:fadeUp 1.4s ease;
}

.hero-buttons{
animation:fadeUp 1.8s ease;
}

@keyframes fadeUp{

from{
opacity:0;
transform:translateY(60px);
}

to{
opacity:1;
transform:translateY(0);
}

}