
*
{
margin: 0;
padding: 0;
box-sizing: border-box;
/* font-family: 'Roboto', sans-serif; */
}
/* Use the font in your CSS rules */
.footer_main { 
    display: flex;
    justify-content: flex-end;
    align-items: flex-end;
    min-height: 100vh;
    background: #373535;
}

.footer_box{
    position: relative;
    width: 100%;
    background: #3586ff;
    min-height: 100px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}



.wave{
    position: absolute;
    top: -100px;
    left: 0;
    height: 100px;
    width: 100%;
    /* background-color: aqua; */
    background: url(wave.png);
    background-size: 1000px 100px;
}
.wave#wave1{
    z-index: 2;
    opacity: 1;
    bottom: 0;
    animation: animateWave 4s linear infinite;
}
.wave#wave2{
    z-index: 1;
    opacity: 0.2;
    bottom: 10px;
    animation: animateWave_2 4s linear infinite;
}
.wave#wave3{
    z-index: 2;
    opacity: 0.7;
    bottom: 15px;
    animation: animateWave 3s linear infinite;
}
.wave#wave4{
    z-index: 1;
    opacity: 0.5;
    bottom: 20px;
    animation: animateWave_2 3s linear infinite;
}

@keyframes animateWave {
    0%{
        background-position-x: 1000px;
    }
    100%{
        background-position-x: 0px;
    }
}
@keyframes animateWave_2 {
    0%{
        background-position-x: 0px;
    }
    100%{
        background-position-x: 1000px;
    }
}
@keyframes animateWave {
    0%{
        background-position-x: 1000px;
    }
    100%{
        background-position-x: 0px;
    }
}
@keyframes animateWave {
    0%{
        background-position-x: 1000px;
    }
    100%{
        background-position-x: 0px;
    }
}

.design_credit{
    color: rgb(55, 48, 48);
}
.design_credit:hover{
    color: black;
}

@media (max-width: 768px) {
    .footer_main {
        min-height: 140vh;
    }
}