html,
body {
margin: 0;
height: 100%;
overflow: hidden;
background: #0b0b0c;
font-family: "Instrument Serif", serif;
}
#app {
position: fixed;
inset: 0;
}
canvas {
display: block;
}
#info {
position: fixed;
top: 0;
left: 0;
z-index: 1;
box-sizing: border-box;
width: min(532px, calc(100vw - 24px));
padding: 32px 14px 38px;
color: #fff;
}
#info h1 {
margin: 0 0 16px;
font-size: 18px;
font-weight: 500;
line-height: 1.1;
letter-spacing: -0.035em;
}
#info nav {
display: flex;
flex-wrap: wrap;
gap: 8px 20px;
}
#info a,
#info span {
color: rgb(255 255 255 / 65%);
text-decoration: none;
}
#info a:hover {
color: #fff;
}
.project-links {
font-size: 12px;
font-weight: 400;
line-height: 1.2;
}
#info .tags {
margin-top: 18px;
gap: 8px 12px;
font-size: 12px;
font-weight: 300;
line-height: 1.2;
}
#nav {
position: fixed;
bottom: 16px;
left: 16px;
z-index: 1;
display: flex;
gap: 16px;
font-size: 13px;
line-height: 1;
}
#nav a {
color: rgb(255 255 255 / 58%);
text-decoration: none;
}
#nav a.active,
#nav a:hover {
color: #fff;
}
@media (max-width: 600px) {
#info {
padding: 20px 14px 24px;
}
#info h1 {
margin-bottom: 12px;
}
#info .tags {
margin-top: 12px;
}
}