body {
    background: #b6b6fc;
    /* background: linear-gradient(to bottom, #faa51a 0%, #faa51a 50%, #145369 51%, #145369 100%); */
    background: linear-gradient(to top, #f1f2fe 0%, #b7b7fc 100%);
    text-shadow: 0px 1px #145369;
}

nav a{
    /* color: #5d5287; */
    /* text-shadow: 0px 1px #e2e7fc; */
}

.intro {
    position: relative;
    height: calc(100vh - var(--nav-height));
    /* height: 900px; */
    max-height: 1024px;
    min-height: 900px;
    /* background-color: #5289c8; */
    /* background: linear-gradient(to bottom, #faa51a 0%, #faa51a 100%); */
    background-image: url('../images/cave.svg');
    background-position: right bottom;
    background-repeat: no-repeat;
    background-size: cover;
    /* background-size: 80%; */
    color: #5d5287;
    text-shadow: 0px 1px #e2e7fc;
}

.intro a {
    color: #5d5287;
    font-weight: bold;
    font-style: italic;
}

.intro a:hover {
    color: #009fb2;
}

@media screen and (max-width: 800px) {
    .intro {
        max-height: unset;
        /* padding-bottom:500px; */
        min-height: 1100px;
    }
}

.intro .container {
    position: relative;
    max-width: 1110px;
    margin: 0 auto;
    right: 0;
    left: 0;
    padding-top: 50px;
    z-index: 2;
    /* border: 1px solid red; */
    height: 100%;
}


.container h1 {
    font-size: 50px;
    font-weight: normal;
    margin-bottom: 30px;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 0.2em;
}

@media screen and (max-width: 800px) {
    .container h1 {
        font-size: 20px;
    }
}

.container h3 {
    font-size: 1.4rem;
    font-weight: normal;
    margin-bottom: 30px;
    text-transform: uppercase;
    letter-spacing: 0.2em;
}

.container p {
    font-size: 1.3rem;
    line-height: 1.6;
    margin-bottom: 1rem;
}



.content  {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    height: 100%;
}

.content .text {
    grid-column: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
}

/* .content .text a {
    cursor: pointer;
}

.content .text a::before {
    content: 'guru@';
}

.content .text a::after {
    content: '.com';
} */

.scroll  {
    grid-column: 2;
    background-image: url('../images/scroll.svg');
    background-size: 100% 100%;
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    background-size: 30%;
    animation: scroll-move 15s infinite;
}


@media screen and (max-width: 800px) {
    .content {
        grid-template-rows: 1fr 1fr;
    }
    .content .text {
        grid-column: unset;
        grid-row: 2;
        padding: 0 20px;
        text-align: center;
    }
    .content .scroll {
        grid-column: unset;
        grid-row: 1;
        margin: 0 auto;
        width: 50%;
        height: auto;
        background-size: contain;
    }
}
@keyframes scroll-move {
    0% {
        transform: rotate(-5deg) translatey(0px);
    }
    25% {
        transform: rotate(0deg) translatey(-30px);
    }
    50% {
        transform: rotate(5deg) translatey(0px);
    }
    75% {
        transform: rotate(0deg) translatey(-30px);
    }
    100% {
        transform: rotate(-5deg) translatey(0px);
    }
}


/* *************************************************************************************************** */

.footer .share {
    background-color: #727cb9;
}

.footer {
    background-color: #5c5086;
}