::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    border-radius: 3px;
}

::-webkit-scrollbar-thumb {
    border-radius: 10px;
    background-color: #dee2e6;
}

::-webkit-scrollbar-thumb:hover {
    background: #6c757d;
}

body{
    margin: 0;
    color: black;
    display: flex;
    flex-direction: column;
    justify-content: center;
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    background-color: #F7FAFC;
}

@media screen and (max-width: 800px) {
    body{
        background-color: white;
    }
}