Files
website/app/globals.css
T
2026-03-05 17:35:27 +01:00

42 lines
651 B
CSS

/* app/globals.css */
@import "tailwindcss";
@layer base {
html,
body {
line-height: normal;
}
}
@font-face {
font-family: 'Beachday';
src: url('/fonts/Beachday.woff2') format('woff2'),
url('/fonts/Beachday.woff') format('woff'),
url('/fonts/Beachday.ttf') format('truetype');
font-weight: normal;
font-style: normal;
}
@keyframes animateright {
from {
right: -300px;
opacity: 0;
}
to {
right: 0;
opacity: 1;
}
}
.player-animation {
position: relative;
animation: animateright 1.5s;
}
@theme {
--font-beachday: 'Beachday', sans-serif;
--font-sans: var(--font-montserrat), sans-serif;
}