@tailwind base;
@tailwind components;
@tailwind utilities;

@layer base {
  :root {
    --color-primary: 57 101 212;
    --color-secondary: 57 101 212;
    /* ... */
  }
}

body {
    background-color: black;
}

.image-container {
    overflow: hidden;
  }
  
  img {
    transition: transform 0.2s ease-out;
  }
  