/* desktop */

@media only screen and (max-width: 1100px) {
    .intro-text {
        padding-top: 0px;
        text-align: center;
    }
}
/* width */

::-webkit-scrollbar {
    width: 10px;
}


/* Track */

 ::-webkit-scrollbar-track {
    box-shadow: inset 0 0 2px grey;
    border-radius: 2px;
}


/* Handle */

 ::-webkit-scrollbar-thumb {
    background: gray;
    border-radius: 10px;
}


/* Handle on hover */

 ::-webkit-scrollbar-thumb:hover {
    background: #8a9fca;
}