

body{
    background-color: rgb(175, 222, 175);
}

h1{
    position: relative;
    animation: entrar 1s forwards;
}

img{
    animation: img 2s;
}

@keyframes entrar{
    from{
        left: -300px;
    }
    to{
        left: 0px;
    }

}

@keyframes img {
    from{
        transform: scale(0);
    }
    
    to{
        transform: scale(1);
    }
}