/* static/global.css */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap'); /* Using Inter font as a common sans-serif */

:root {
  --background-dark: #23272B; 
  --text-light: #ffffff;
  --text-gray: #b0b0b0;
  --accent-color: #c7acd2; 
  --icon-accent: #EAD2AC;
}

body {
  margin: 0;
  padding: 0;
  font-family: "Lato", Sans-Serif;
  background-color: var(--background-dark);
  color: var(--text-light);
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  overflow: hidden;
}

a {
  color: var(--text-gray);
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover {
  color: var(--accent-color);
}

#svelte { 
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100vh;
}