* {
    box-sizing: border-box;
    font-family: "Cairo", sans-serif;
}

body {
    min-height: 100dvh;
    width: 100%;
    display: flex;
    scroll-behavior: smooth;
}

.no-scrollbar {
    -ms-overflow-style: none;
    /* IE and Edge */
    scrollbar-width: none;
    /* Firefox */
}

.no-scrollbar::-webkit-scrollbar {
    display: none;
}