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

.hide-scrollbar {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

* {
    transition-property: background-color, border-color, color, fill, stroke, opacity, box-shadow, transform;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: 150ms;
}

.text-netflix {
    color: #E50914;
}

.bg-netflix {
    background-color: #E50914;
}

.border-netflix {
    border-color: #E50914;
}

html,
body {
    scroll-behavior: smooth;
}