38 lines
688 B
CSS
38 lines
688 B
CSS
body {
|
|
margin: 8px;
|
|
min-height: 100dvh;
|
|
background-color: black;
|
|
color: white;
|
|
cursor: url("../assets/cursor_black.png"), auto;
|
|
}
|
|
|
|
h1 {
|
|
font-family: "Pirata One";
|
|
font-size: min(40vw, 12em);
|
|
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; }
|
|
/* tailwind lite */
|