@import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;600;700;800&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Material+Symbols+Rounded:opsz,wght,FILL,GRAD@24,600,1,0');

:root {
    --font-ui: 'DM Sans', 'Segoe UI', sans-serif;
    --text-main: #f6f9ff;
    --text-soft: #c4d0e6;
    --glass-bg: rgba(14, 34, 73, 0.44);
    --glass-stroke: rgba(212, 229, 255, 0.24);
    --glass-highlight: rgba(255, 255, 255, 0.14);
    --glow-blue: #5cb8ff;
}

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

html,
body {
    min-height: 100%;
}

body {
    font-family: var(--font-ui);
    color: var(--text-main);
}

a {
    color: inherit;
    text-decoration: none;
}

a,
button,
input {
    font-family: inherit;
}

.glass {
    background: linear-gradient(135deg, rgba(7, 24, 55, 0.52), rgba(15, 42, 82, 0.34));
    border: 1px solid var(--glass-stroke);
    box-shadow: inset 0 1px 0 var(--glass-highlight);
    backdrop-filter: blur(11px);
    -webkit-backdrop-filter: blur(11px);
}

.material-symbols-rounded {
    font-variation-settings:
        'FILL' 1,
        'wght' 600,
        'GRAD' 0,
        'opsz' 24;
    font-size: 1.45rem;
    line-height: 1;
}
