@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

body {
    background: #73d7ac;
    text-align: center;
    font-family: "Poppins", system-ui;
}

main {
    height: 100vh;
    display: grid;
    place-content: center;
}

.hero img{
    max-width: 80%;
}

.hero p {
    font-size: clamp(1rem, 3vw, 4rem);
    margin-top: 0;
}

body {
    animation: fadeInAnimation ease 4s;
    animation-iteration-count: 1;
    animation-fill-mode: forwards;
}

@keyframes fadeInAnimation {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

.hero img {
    animation: scaleAnimationImg ease 3s;
    animation-iteration-count: 1;
    animation-fill-mode: forwards;
}

@keyframes scaleAnimationImg {
    0% {
        transform: scale(0);
    }

    100% {
        transform: scale(1);
    }
}

.hero p {
    transform: scale(0);
}

.hero p {
    animation: scaleAnimationTxt ease 3s;
    animation-iteration-count: 1;
    animation-fill-mode: forwards;
    animation-delay: 2s;
}

@keyframes scaleAnimationTxt {
    0% {
        transform: scale(0);
    }

    100% {
        transform: scale(1);
    }
}