@import url('source/asterix.css');
@import url('source/media.css');

* {
    margin: 0;
    padding: 0;
}

body {
    height: 100vh;
    background: linear-gradient(to top left, #bbdeeb, #f6fff3);
    overflow: hidden;
    font-family: Arial, Helvetica, sans-serif;
}

:root {
    --DarkGreyColor: #211f24;
    --TextDarkColor: #47636d;
    --TextDarkSecondColor: #537279;
    --TextDarkSecondColor-Responsive: #90d6e9;
    --textshadow: -1px -1px 0 rgba(0, 0, 0, 0.500), 1px -1px 0 rgba(0, 0, 0, 0.500), -1px 1px 0 rgba(0, 0, 0, 0.500), 1px 1px 0 rgba(0, 0, 0, 0.500);

    --bg-void: #141318;
    --bg-surface: var(--DarkGreyColor);
    --bg-surface-2: #2c2931;
    --bg-surface-3: #38343d;
    --ink-100: #e7edee;
    --ink-300: #a9bcc0;
    --ink-muted: var(--TextDarkColor);
    --ink-label: var(--TextDarkSecondColor);
    --gold: #4cd39f;
    --gold-soft: #7fe8d1;
    --gold-glow: rgba(76, 211, 98, 0.35);
    --border-soft: rgba(83, 114, 121, 0.25);
    --border-strong: rgba(76, 211, 211, 0.45);
    --radius-s: 6px;
    --radius-m: 12px;
    --radius-l: 20px;
    --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

.FlexCenter {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.FlexCenter2 {
    display: flex;
    justify-content: center;
    align-items: center;
}