:root {
    --transition-slow: 0.8s;
    --transition-medium: 0.5s;
    --transition-fast: 0.3s;
}

body {
    font-family: 'Montserrat', sans-serif;
    color: white;
    background-color: black;
    overflow-x: hidden;
}

.font-cormorant {
    font-family: 'Cormorant Garamond', serif;
}

::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #1a1a1a;
    border-radius: 5px;
}

::-webkit-scrollbar-thumb {
    background: #4a4a4a;
    border-radius: 5px;
    border: 2px solid #1a1a1a;
}

::-webkit-scrollbar-thumb:hover {
    background: #666;
}

* {
    scrollbar-width: thin;
    scrollbar-color: #4a4a4a #1a1a1a;
}