.landing {
    height: calc(100vh - 64px);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
}

.landing::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 600px;
    background: #ececec;
    top: -40px;
    left: 0;
    z-index: -1;
    transform: skewY(-3deg);
}

.landing .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.landing .container .text h2 {
    font-size: 40px;
    margin-bottom: 10px;
    color: var(--font-color-alt);
}

.landing .container .text p {
    font-size: 25px;
    line-height: 1.8;
    color: var(--paragraph-color);
}

.landing .container .image img {
    position: relative;
    width: 600px;
    animation: up-to-down 5s linear infinite;
}

@keyframes up-to-down {

    0%,
    100% {
        top: 0;
    }

    50% {
        top: -40px;
    }
}

.landing .go-down {
    display: block;
    cursor: pointer;
    color: var(--main-color);
    transition: var(--transition-duration);
    animation: bouncing 1.5s infinite;
}

@keyframes bouncing {

    0%,
    10%,
    20%,
    30%,
    50%,
    80%,
    100% {
        transform: translateY(0);
    }

    40%,
    60% {
        transform: translateY(-10px);
    }
}

.landing .go-down:hover {
    color: var(--hover-color);
}

/* Responsive (Medium) */
@media (max-width: 991px) {
    .landing {
        position: relative;
        height: calc(100vh - 2*64px);
    }

    .landing .container .image {
        display: none;
    }

    .landing .container .text {
        text-align: center;
        margin-top: 10vh;
    }

    .landing .container .text h2 {
        margin-top: 0;
    }
}

/* Responsive (Mobile) */
@media (max-width: 767px) {
    .landing .container .text h2 {
        font-size: 25px;
    }

    .landing .container .text p {
        font-size: 20px;
    }
}