

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

html, body {
    overflow-x: hidden;
    scroll-behavior: smooth;
}

button {
    cursor: pointer;
}

button:disabled {
    cursor: not-allowed;
}

::-webkit-scrollbar {
    width: 12px;
    height: 12px;
}

::-webkit-scrollbar-track {
    background-color: #f1f1f1;
    border-radius: 10px;
}

::-webkit-scrollbar-thumb {
    background-color: #f3b62f;
    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
    background-color: #f3b62f;
}

::-webkit-scrollbar-corner {
    background-color: #f1f1f1;
}

@keyframes fade-in-up {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fade-in-up {
    animation: fade-in-up 0.8s ease-out forwards;
}