Files
futile.eu/style.css
T
2025-11-06 10:36:38 +00:00

32 lines
585 B
CSS

@font-face {
font-family: "Bokor";
src: url("assets/Bokor-Regular.woff2") format("woff2");
}
html,
body {
margin: 0;
background-color: black;
}
.container {
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
}
.title {
color: white;
text-decoration: none;
cursor: default;
font-family: "Bokor";
font-size: clamp(1em, 3.6em, 40vw);
user-select: none;
/* because chromium renders this font like dogshit at weight 600 */
@supports not (-moz-appearance: none) {
font-weight: 400;
}
}