.top{
    /* background: rgb(94,86,62);
    background: linear-gradient(108deg, rgba(94,86,62,1) 0%, rgba(200,173,133,1) 50%, rgba(231,222,208,1) 100%); */
    background: rgb(255,255,255);
    background: linear-gradient(108deg, rgba(255,255,255,1) 0%, rgba(208,180,138,1) 52%, rgba(231,222,208,1) 100%);
    width: 100%;
    height: 650px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    user-select: none;
    pointer-events: none;
}

.scroll-indicator{
    position: absolute;
    font-size: 12px;
    transform: rotate(-90deg);
    bottom: 25px;
    left: -20px;
    letter-spacing: 5px;
    color: rgba(0, 0, 0, 0.75);
}
.scroll-indicator .text{
    font-family: monospace;
}
.scroll-indicator::before{
    content: "";
    height: 1px;
    width: 500px;
    position: absolute;
    right: 90px;
    top: 44%;
    position-anchor: right;
    /* background-color: rgba(0, 0, 0, 0.75); */
    background: rgb(255,255,255);
    background: linear-gradient(90deg, rgba(255,255,255,0) 0%, rgba(0,0,0,0.75) 100%);
}

.top .top-bag{
    height: 600px;
}

.top .title{
    font-family: 'Dancing Script', cursive;
    font-weight: 600;
    font-size: 130px;
}

.top .subtitle{
    font-family: 'Source Sans Pro', sans-serif;
    font-weight: 300;
    font-size: 46px;
}

.top .textthing{
    font-size: 18px;
}

section{
    min-height: 80vh;
    display: flex;
    align-items: center;
}



@media only screen and (max-width: 1000px) {
    .top .title{
        font-size: 75px;
    }
    .top .subtitle{
        font-family: 'Source Sans Pro', sans-serif;
        font-weight: 300;
        font-size: 31px;
    }
    .top .textthing{
        font-size: 14px;
    }
}