*{
margin: 0;
padding: 0;
box-sizing: border-box;
font-family: 'Poppins' sans-serif;
}
body{
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background:url(https://images.pexels.com/photos/3052361/pexels-photo-3052361.jpeg) no-repeat;
    background-size: cover;
    background-position: center;
}
img{
    display: grid;
    justify-content: center;
    align-items: center;
    margin-top: 130px;
    padding: 40px;
    width: 600px;
    height: 400px;
    transition: 0.3s;
    animation: float 2s linear infinite;
}
.titulo{
    margin-top: 20px;
    font-size: 2em;
    color: #ffffff;
    user-select: none;
}
.texto{
    display: grid;
    justify-content: center;
    align-items: center;
    margin-top: 130px;
    width: 50%;
    color: #fff;
    border-radius: 30px;
    border-style: solid;
    border-color: #fff;
    padding: 40px;
}
@keyframes float {
    0%, 100% {
        transform: translateY(0rem);
    }
    50%{
        transform: translateY(-1.3rem);
    }
    
}
