@import url('https://fonts.googleapis.com/css2?family=IBM+Plex+Sans+Condensed:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;1,100;1,200;1,300;1,400;1,500;1,600;1,700&family=IBM+Plex+Sans:ital,wght@0,100..700;1,100..700&family=IBM+Plex+Serif:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;1,100;1,200;1,300;1,400;1,500;1,600;1,700&family=Permanent+Marker&display=swap');

:root {
  --accent: #ff9500;
  --text: #001122;
}

body {
  font-family: 'IBM Plex Sans', sans-serif;
  margin: 0;
  padding: 0;
  color: var(--text);
}

nav {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  padding: 1rem;
  position: fixed;
  top: 0;
  right: 0;
  z-index: 1000;
}

footer {
  font-family: 'IBM Plex Sans Condensed', sans-serif;
}

/* HERO SECTION */
#hero {
  height: 100lvh;
  background-color: var(--accent);
}

/* UTILITY CLASSES */
.tight-text {
  text-box-trim: trim-both;
  text-box-edge: cap alphabetic;
}