/*
Click nbfs://nbhost/SystemFileSystem/Templates/Licenses/license-default.txt to change this license
Click nbfs://nbhost/SystemFileSystem/Templates/JSP_Servlet/CascadeStyleSheet.css to edit this template
*/
/* 
    Created on : 4 set 2023, 13:28:49
    Author     : Valerio
*/
use{
    animation:move-forever 4s linear infinite;
}
#wave2{
    animation-duration:5s;
    animation-delay:-3s;
}
#wave1{
    animation-duration:10s
}
;

/* layout only*/
#wavesvg{
    height: 100px !important;
    width: -webkit-fill-available !important;
}

@keyframes move-forever{
    0%{
        transform: translate(-2px , 0)
    }
    100%{
        transform: translate( 0px , 0)
    }
}
;
