body{
    background-color: #14161c;
    /* color: #fff; */
    /* font-family: 'Poppins', sans-serif; */
    /* font-size: 16px; */
    /* line-height: 1.5; */
    margin: 0;
    padding: 0;
}
.header{
    background-color: #14161c;
    height:100vh;
    background-image: url('homepage-illustration.svg');
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}
nav{
    z-index: 6969;
}
::-webkit-scrollbar {
    width: 10px;
    height: 10px;
    transition: 1.0s;
}

::-webkit-scrollbar-thumb {
    background-color: rgba(127, 127, 127, 0.6);
    background-clip: padding-box;
    border: 2px solid transparent;
    border-radius: 5px;
    transition: 1.0s;
}

::-webkit-scrollbar-thumb:vertical:hover,
::-webkit-scrollbar-thumb:horizontal:hover {
    background-color: rgb(110, 110, 110);
    transition: 0.3s;
}

::-webkit-scrollbar-track {
    background-color: transparent;
}



::-webkit-scrollbar-thumb:vertical:active,
::-webkit-scrollbar-thumb:horizontal:active {
    background: rgba(95, 91, 91, 1);

}

::-webkit-scrollbar-corner {
    background: none;
}