.home-container{background-color:var(--primary-color);height:100vh;width:100vw}.text-container{height:60vh;width:100vw;display:flex;align-items:center;justify-content:center}.text-container span{opacity:0;animation:drop 1s linear forwards;font-size:15vw;font-weight:700}.text-container span:nth-child(2){animation-delay:.3s}.text-container span:nth-child(3){animation-delay:.6s}.text-container span:nth-child(4){animation-delay:.9s}.text-container span:nth-child(5){animation-delay:1.2s}.text-container span:nth-child(6){animation-delay:1.5s}.text-container span:nth-child(7){animation-delay:1.8s}.text-container span:nth-child(8){animation-delay:2.1s}.text-container span:nth-child(9){animation-delay:2.4s}.btn-container{display:flex;justify-content:center;column-gap:20px;opacity:0;animation:up 1s ease-in forwards}@keyframes up{0%{transform:translateY(100px) scaleY(.9);opacity:0}to{transform:translateY(0) scaleY(1);opacity:1}}@keyframes drop{0%{transform:translateY(-200px) scaleY(.9)}5%{opacity:.7}50%{transform:translateY(0) scaleY(1);opacity:1}65%{transform:translateY(-17px) scaleY(.9)}70%{transform:translateY(-22px) scaleY(.9)}to{transform:translateY(0) scaleY(1);opacity:1}}