<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">.floating-pics-container{
    margin: 1em 0;
    --moveUp : -3%;
    --moveDown : 3%;
}

.floating-pics-wrapper{
    display: flex;
    gap: 2em;
    height: 100%;
    margin: 1em 0;
    justify-content: space-evenly;
}

.floating-item{
    position: relative;
    height: 500px;
}

.floating-item img{
    border-radius: 20px;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
@keyframes moveUp {
    
    0%{
        transform: translateY(0);
    }

    50%{
        transform: translateY(var(--moveUp));
    }

    0%{
        transform: translateY(0);
    }
}

@keyframes moveDown {
    
    0%{
        transform: translateY(0);
    }

    50%{
        transform: translateY(var(--moveDown));
    }

    0%{
        transform: translateY(0);
    }
}

#pic-0{
    align-self: flex-end;
    animation: moveUp 4s infinite ;
    width: 30%;
    
}

#pic-1{
    align-self: flex-end;
    padding-bottom: 4em;
    animation: moveDown 4s infinite ;
    
    width: 20%;
    height: 350px;

}

#pic-2{
    align-self: flex-start;
   
    animation: moveUp 4s infinite ;
    width: 20%;
    height: 350px;
    
}

#pic-3{
    align-self: flex-start;
    animation: moveDown 4s infinite ;
    padding-top: 2em;
    width: 30%;

}

@media (min-width:1920px){

    .floating-item{
        height: 700px;
    }

    #pic-1,#pic-2{
        height: 550px;
    }

}

@media (max-width: 1024px) {
    
    .floating-item{
        height: 380px;
    }

    #pic-1,#pic-2{
        height: 250px;
    }

}

@media (max-width: 768px) {
    .floating-item{
        height: 280px;
    }

    #pic-1,#pic-2{
        height: 180px;
    }
}

@media (max-width: 576px) {
    .floating-item{
        height: 140px;
    }

    .floating-item img{
        height: 140px;
        border-radius: 10px;
    }

    .floating-pics-wrapper{
        gap: 5px;
    }


    #pic-0{
        align-self: unset;
    }
}</pre></body></html>