@import url(./fonts.css);

body {
    background-color: #1591dc;
    height: 1290px;
}

.Tittle {
    height: 100%;
}
.Image {
    margin-top: 20%;
    height: fit-content;
    display: flex;
    justify-content: center;
}

.Image .image {
    display: inline-block;
    width: 35rem;
}

.wave-text {
    display: flex;
    justify-content: center;
}

.wave-text span {
    display: inline-block;
    font-size: 4rem;
    animation: wave 2s ease-in-out infinite;
}

.wave-text span:nth-child(1) {
    animation-delay: 0s;
}
.wave-text span:nth-child(2) {
    animation-delay: 0.1s;
}
.wave-text span:nth-child(3) {
    animation-delay: 0.2s;
}
.wave-text span:nth-child(4) {
    animation-delay: 0.3s;
}
.wave-text span:nth-child(5) {
    animation-delay: 0.4s;
}
.wave-text span:nth-child(6) {
    animation-delay: 0.5s;
}
.wave-text span:nth-child(7) {
    animation-delay: 0.6s;
}
.wave-text span:nth-child(8) {
    animation-delay: 0.7s;
}
.wave-text span:nth-child(9) {
    animation-delay: 0.8s;
}
.wave-text span:nth-child(10) {
    animation-delay: 0.9s;
}
.wave-text span:nth-child(11) {
    animation-delay: 1s;
}
.wave-text span:nth-child(12) {
    animation-delay: 1.1s;
}
.wave-text span:nth-child(13) {
    animation-delay: 1.2s;
}
.wave-text span:nth-child(14) {
    animation-delay: 1.3s;
}
.wave-text span:nth-child(15) {
    animation-delay: 1.4s;
}

@keyframes wave {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-20px);
    }
}


@media only screen and (max-width: 570px) {
    .Image {
        height: fit-content;
        display: flex;
        justify-content: center;
    }
    .Image .image {
        display: inline-block;
        width: 25rem;
    }
    .wave-text span {
        font-size: 2rem;
    }
}
@media only screen and (max-width: 412px) {
    .Image {
        height: fit-content;
        display: flex;
        justify-content: center;
    }
    .Image .image {
        display: inline-block;
        width: 15rem;
    }
    .wave-text span {
        font-size: 1rem;
    }
}

