38 lines
647 B
CSS
38 lines
647 B
CSS
body {
|
|
min-height: 100dvh;
|
|
}
|
|
|
|
h1 {
|
|
font-family: Pirata One;
|
|
font-size: clamp(1em, 12em, 40vw);
|
|
font-weight: 600;
|
|
@supports not (-moz-appearance: none) {
|
|
font-weight: 400;
|
|
}
|
|
}
|
|
|
|
p {
|
|
font-family: "Iosevka";
|
|
}
|
|
|
|
/* tailwind lite */
|
|
.flex { display: flex; }
|
|
.flex-col { flex-direction: column; }
|
|
|
|
.justify-center { justify-content: center; }
|
|
|
|
.items-center { align-items: center; }
|
|
|
|
.overflow-hidden { overflow: hidden; }
|
|
|
|
.leading-none { line-height: 1; }
|
|
|
|
.max-w-lg { max-width: 32rem }
|
|
|
|
.select-none { user-select: none; }
|
|
|
|
.bg-black { background-color: black; }
|
|
|
|
.text-white { color: white; }
|
|
/* tailwind lite */
|