@tailwind base;
@tailwind components;
@tailwind utilities;

*{font-family: 'Pretendard', sans-serif !important;}

/* Firefox */
@-moz-document url-prefix() {
    .custom-scroll-bar {
        scrollbar-width: thin;
        scrollbar-color: #E6EAEA white;
        margin-right: 0;
    }
}
.custom-scroll-bar {
    margin-right: -20px;
}

.custom-scroll-bar::-webkit-scrollbar{
    width: 20px;
}

.custom-scroll-bar::-webkit-scrollbar-track:vertical {
    background: #fff;
    border-radius: 10px;
}

.custom-scroll-bar::-webkit-scrollbar-track:horizontal {
    background: #fff;
    border-radius: 10px;
} 

.custom-scroll-bar::-webkit-scrollbar-thumb {
    background: #E6EAEA;
    border-radius: 2em;
    border: 7px solid #fff;
}