32 lines
486 B
CSS
32 lines
486 B
CSS
@import url("https://fonts.googleapis.com/css2?family=Inter:wght@100..900&family=Tenor+Sans&display=swap");
|
|
@import url("https://fonts.googleapis.com/css2?family=Tenor+Sans&display=swap");
|
|
|
|
@tailwind base;
|
|
@tailwind components;
|
|
@tailwind utilities;
|
|
|
|
body {
|
|
font-family: "Inter", sans-serif;
|
|
@apply text-white;
|
|
}
|
|
|
|
.font-tenor {
|
|
font-family: "Tenor Sans", sans-serif;
|
|
}
|
|
|
|
.entering {
|
|
opacity: 1;
|
|
}
|
|
|
|
.entered {
|
|
opacity: 1;
|
|
}
|
|
|
|
.exiting {
|
|
opacity: 0;
|
|
}
|
|
|
|
.exited {
|
|
opacity: 0;
|
|
}
|