@font-face { 
	font-family: "geistpixel"; 
	src: url("./fonts/geistpixel.woff2") format("woff2"), 
		url("./fonts/geistpixel.woff") format("woff"), 
		url("./fonts/geistpixel.ttf") format("truetype"); 
	font-weight: normal;
	font-style: normal; 
	font-display: swap; 
}

@font-face { 
	font-family: "gothicbyte"; 
	src: url("./fonts/gothicbyte.woff2") format("woff2"), 
		url("./fonts/gothicbyte.woff") format("woff"), 
		url("./fonts/gothicbyte.ttf") format("truetype"); 
	font-weight: normal;
	font-style: normal; 
	font-display: swap; 
}

@font-face { 
	font-family: "pixelbasel"; 
	src: url("./fonts/pixelbasel.woff2") format("woff2"), 
		url("./fonts/pixelbasel.woff") format("woff"), 
		url("./fonts/pixelbasel.ttf") format("truetype"); 
	font-weight: normal;
	font-style: normal; 
	font-display: swap; 
}

@font-face { 
	font-family: "pixelta"; 
	src: url("./fonts/pixelta.woff2") format("woff2"), 
		url("./fonts/pixelta.woff") format("woff"), 
		url("./fonts/pixelta.ttf") format("truetype"); 
	font-weight: normal;
	font-style: normal; 
	font-display: swap; 
}

@font-face { 
	font-family: "tiny5"; 
	src: url("./fonts/tiny5.woff2") format("woff2"), 
		url("./fonts/tiny5.woff") format("woff"), 
		url("./fonts/tiny5.ttf") format("truetype"); 
	font-weight: normal;
	font-style: normal; 
	font-display: swap; 
}

.stage {
  position: relative;
  width: min(75vw, 75vh);
  height: min(75vw, 75vh);
}

.sun {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 50%;
  height: 50%;
  min-width: 128px;
  min-height: 128px;
}

.logo {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.orbit {
  position: absolute;
  inset: 0;
}

.planet {
  position: absolute;
  top: 50%;
  left: 50%;
  /* JS sets --x / --y per link; this recentres the icon on that point */
  transform: translate(-50%, -50%) translate(var(--x, 0px), var(--y, 0px));
}

.planet img {
  display: block;
  width: var(--icon-size, 48px);
  height: var(--icon-size, 48px);
  object-fit: contain;
}

html {
  height: 100%;
  min-height: 100vh;
  margin: 0;
  cursor: url("./cursors/normal.png"), auto;
}

a, button, [role="button"], .clickable {
  cursor: url("./cursors/pointer.png"), pointer;
}

input, textarea, [contenteditable="true"] {
  cursor: url("./cursors/text.png"), text;
} 

body {  
  text-align: center;
  background-color: black;
  color: white;
  
  display: flex;
  align-items: center;
  justify-content: center;
  
  min-height: 99vh;
  
  font-size: 18px;
  font-family: "tiny5";
}

h1 {
  text-align: center;
  font-size: 48px;
  font-family: "pixelta";
}

p {
  text-align: center;
  font-size: 24px;
  font-family: "pixelbasel";
}

a {
  color: yellow;
  font-weight: bold;
}