:root {
    --primary-color: #6750A4;
    --primary-container: #EADDFF;
    --on-primary-container: #21005D;
    --background-color: #F3EDF7;
    --radius-lg: 28px;
    --radius-md: 20px;
    --spacing-base: 24px;
    --anim-duration: 0.5s;
    --transition-normal: all 0.3s ease;
}

* {
    -webkit-tap-highlight-color: transparent;
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html, body {
    height: 100%;
}

body {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--background-color);
}