body {
    margin: 0;
    overflow: hidden;
}

.flex-center {
    height: 85vh;
    width: 100vw;
    display: flex;
    align-items: center;
    justify-content: center;
}

#ente {
    width: 80vh;
    min-width: 40vw;
    max-width: 30em;
    animation: duck 5s ease-in-out infinite;
}

#wave {
    width: 200%;
    height: 12.5em;
    position: absolute;
    left: 0;
    top: calc(50vh + 0em);
    /*align-self: flex-end;*/
    animation-name: waveAction;
    animation-iteration-count: infinite;
    animation-timing-function: linear;
    animation-duration: 7s;
}

#solidwater {
    height: calc(50vh - 10em);
    width: 100%;
    position: absolute;
    left: 0;
    top: calc(50vh + 12.5em);
    background-color: #0045cf;
    display: flex;
    justify-content: center;
    align-items: center;
}

.service {
    height: 7em;
    width: 7em;
    padding: 2em;
}

@keyframes waveAction {
    0% {
        transform: translate(-50%, 0);
    }
    100% {
        transform: translate(0, 0);
    }
}

@keyframes duck {
    0% {
        transform: rotate(5deg);
    }
    50% {
        transform: rotate(-5deg);
    }
    100% {
        transform: rotate(5deg);
    }
}