@keyframes fadeIn { from { opacity:0; } to { opacity:1; } }

.kontakt_title {
    opacity:0;  /* make things invisible upon start */
    animation:fadeIn ease-in 1;
    animation-fill-mode:forwards;
    animation-duration: 1.8s;
    color: white;
    align-self: center;
    justify-self: center;
    text-align: center;
    font-size: 3.5rem;
    top: 15vh;
    position: relative;
    }

.kontakt_liste {
    opacity:0;  /* make things invisible upon start */
    animation:fadeIn ease-in 1;
    animation-fill-mode:forwards;
    animation-duration: 1.8s;
    top: 15vh;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    font-size: 2rem;
    position: relative;
}

.des {
    padding-top: 8vh;
    font-size: 1.4rem;
    margin-left: 30%;
    margin-right: 30%;
}

h6 {
    padding: 2vh;
}

.info {
    margin-top: 7.25vh;
}

html, body {
    margin: 0;
    min-height: 100%;
}

  /* waves */
.ocean {
    height: 80px; /* change the height of the waves here */
    width: 100%;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    overflow-x: hidden;
}

.wave {
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 800 88.7'%3E%3Cpath d='M800 56.9c-155.5 0-204.9-50-405.5-49.9-200 0-250 49.9-394.5 49.9v31.8h800v-.2-31.6z' fill='%23003F7C'/%3E%3C/svg%3E");
    position: absolute;
    width: 200%;
    height: 100%;
    animation: wave 10s -3s linear infinite;
    transform: translate3d(0, 0, 0);
    opacity: 0.8;
}

.wave:nth-of-type(2) {
    bottom: 0;
    animation: wave 18s linear reverse infinite;
    opacity: 0.5;
}

.wave:nth-of-type(3) {
    bottom: 0;
    animation: wave 20s -1s linear infinite;
    opacity: 0.5;
}

@keyframes wave {
    0% {transform: translateX(0);}
    50% {transform: translateX(-25%);}
    100% {transform: translateX(-50%);}
}

.footer {
    background-color: #023f78;
    position: absolute;
}

.logo_img{
    margin-top: 5vh;
    display: grid;
    place-items: center;
}