@import "tailwindcss";

:root {
  --background: #07090d;
  --surface: #10141c;
  --surface-2: #171c26;
  --text: #f7f8fa;
  --muted: #9aa3b2;
  --accent: #e50914;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--background);
  color: var(--text);
  font-family: Arial, Helvetica, sans-serif;
}

button,
input {
  font: inherit;
}

::selection {
  background: #ffffff;
  color: #000000;
}

.poster {
  aspect-ratio: 2 / 3;
  background:
    linear-gradient(145deg, rgba(255,255,255,.08), transparent 40%),
    linear-gradient(180deg, #202734, #0c0f15);
}
