35 lines
656 B
CSS
35 lines
656 B
CSS
@tailwind base;
|
|
@tailwind components;
|
|
@tailwind utilities;
|
|
|
|
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');
|
|
|
|
body {
|
|
background-color: #09090b;
|
|
color: #e5e2e1;
|
|
font-family: 'Inter', sans-serif;
|
|
-webkit-font-smoothing: antialiased;
|
|
}
|
|
|
|
.glass-effect {
|
|
background: rgba(57, 57, 57, 0.4);
|
|
backdrop-filter: blur(15px);
|
|
-webkit-backdrop-filter: blur(15px);
|
|
}
|
|
|
|
.asymmetric-grid {
|
|
display: grid;
|
|
grid-template-columns: 1.2fr 0.8fr;
|
|
}
|
|
|
|
@media (max-width: 768px) {
|
|
.asymmetric-grid {
|
|
grid-template-columns: 1fr;
|
|
}
|
|
}
|
|
|
|
::selection {
|
|
background-color: #f7931a;
|
|
color: #603500;
|
|
}
|