* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  background-color: rgb(250, 250, 250);
}

body {
  font-family: Arial, sans-serif;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  font-size: 14px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

main {
  flex: 1;
  position: relative;
  overflow: hidden;
  cursor: crosshair;
}

footer {
  padding: 2rem;
}

/* TEXT STYLES */
/*-------------*/

a {
  color: #000000;
  text-decoration: underline;
  align-self: center;
}

p {
  font-size: 1em;
  margin: 0;
}

/* NAV */
/*+++++*/

#nav {
  display: flex;
  align-items: center;
  flex-direction: row;
  justify-content: space-between;
  padding: 2em 2rem 0 2em;
}

#nav-right {
  display: flex;
  flex-direction: row;
  gap: 1rem;
}


/* CANVAS */
/*++++++++*/

#canvas {
  position: relative;
  width: 100%;
  height: calc(100vh - 120px);
  /* Adjust based on your header/footer height */
  overflow: hidden;
}

#current {
  position: absolute;
  text-align: center;
  padding: 20px;
  /* Start position - will be animated */
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

#current h1 {
  font-size: 1em;
  font-weight: 400;
  margin-bottom: 5px;
}

#current a {
  font-size: 1em;
  color: #a2a2a2;
  display: block;
}