/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: url('../assets/backgrounds/darkmode.png') no-repeat center bottom fixed;
    background-size: cover;
    color: white;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Light theme using provided palette */
body.light {
    background: url('../assets/backgrounds/LightmodeBackground.jpeg') no-repeat center bottom fixed;
    background-size: cover;
    color: #011f19;
}
