:root {
    --fg: #121413;
    --bg: #eeebd8;
    --accent: #6cbf5a;
}

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

body {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg);
    color: var(--fg);
    font-family: 'Rajdhani', system-ui, sans-serif;
    text-align: center;
}

.logo {
    max-height: 72vh;
    max-width: 90vw;
    margin-bottom: 20px;
}
