/* General Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    font-family: 'Montserrat', sans-serif;
    color: #fff;
    overflow-x: hidden;
    min-height: 100vh;
    position: relative;
}
html {
    scroll-behavior: smooth;
}
