Spaces:
Running
Running
File size: 832 Bytes
323961b c750888 6c21ce7 be04333 6c21ce7 bfd3e28 6c21ce7 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 |
@tailwind base;
@tailwind components;
@tailwind utilities;
@import url("https://fonts.googleapis.com/css2?family=Bangers");
@import url('https://fonts.googleapis.com/css2?family=Lato&family=Montserrat:wght@700&family=Poppins:wght@400&display=swap');
@keyframes springBackground {
0%, 100% {
background-size: 100% auto;
}
50% {
background-size: 110% auto;
/* Adjust the scale as needed */
}
}
.text-black-stroke {
-webkit-text-stroke: 1px black;
/* WebKit browsers (Safari, Chrome) */
text-stroke: 1px black;
/* Standard */
}
.text-black-stroke-large {
-webkit-text-stroke: 3px black;
/* WebKit browsers (Safari, Chrome) */
text-stroke: 3px black;
/* Standard */
}
.text-white-fill {
-webkit-text-fill-color: white;
/* WebKit browsers (Safari, Chrome) */
fill: white;
/* Standard */
} |