20 lines
322 B
CSS
20 lines
322 B
CSS
@tailwind base;
|
|
@tailwind components;
|
|
@tailwind utilities;
|
|
|
|
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&display=swap');
|
|
|
|
* {
|
|
box-sizing: border-box;
|
|
}
|
|
|
|
html {
|
|
font-family: 'Inter', sans-serif;
|
|
scroll-behavior: smooth;
|
|
}
|
|
|
|
body {
|
|
background: #0a0a0a;
|
|
color: #ffffff;
|
|
}
|