/* Turn Headlines off for this page */
.headlines {
    display: none;
}

.ship-leaving {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    width: 100%;
    height: 100px;
}

.fa-sailboat {
    position: relative;
    top: 2px;
    font-size: 2.5rem;
    color: #bbb;
    animation: ship 2s infinite ease-in-out;
}

.fa-water {
    font-size: 1.2rem;
    color: #598ea8;
    animation: wave 2s infinite ease-in-out;
}

.water {
    display: flex;
    flex-direction: row;
}

.water .fa-water:nth-child(1) {
    animation-delay: 0.6s;
}

.water .fa-water:nth-child(2) {
    animation-delay: 0.8s;
}

.water .fa-water:nth-child(3) {
    animation-delay: 1s;
}

.water .fa-water:nth-child(4) {
    animation-delay: 1.2s;
}

.water .fa-water:nth-child(5) {
    animation-delay: 1.4s;
}

@keyframes ship {
    0%, 100% {
        transform: translateY(-5px) rotate(-2.5deg);
    }
    50% {
        transform: translateY(1px) rotate(2.5deg);
    }
}

@keyframes wave {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-5px);
    }
}