:root {
    --bg-color: #121212;
    --text-color: #ffffff;
    --accent-color: #f9d342;
    --bg-gradient: linear-gradient(135deg, #0f2027, #203a43, #2c5364);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box; /* Proper sizing */
    text-decoration: none; /* Remove text decoration */
}

body {
    background: var(--bg-gradient);
    color: var(--text-color);
    overflow-y: scroll; /* Allows vertical scrolling if necessary */
    font-family: 'Poppins', sans-serif; /* Global font */
}