/* Custom styles for DS Scaffolding */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Open Sans', sans-serif;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Bebas Neue', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Image hover effects */
img {
    transition: transform 0.5s ease;
}

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: hsl(0, 0%, 96%);
}

::-webkit-scrollbar-thumb {
    background: hsl(50, 100%, 50%);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: hsl(50, 100%, 40%);
}
