@font-face {
  font-family: "Macondo"; /* Name, den du später verwendest */
  src: url("../assets/fonts/Macondo/Macondo-Regular.ttf") format("woff2"); /* Pfad zur Datei */
  font-weight: normal; /* Oder 400 */
  font-style: normal;
}

body {
  font-family: "Macondo", sans-serif;
  margin: 0;
  background: #000;
}

main {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
}

canvas {
  display: block;
  margin: 0 auto;
}

#layout-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  padding-top: 20px;
}

#game-container canvas {
  display: block;
}

#side-left,
#side-right {
  width: 250px;
  height: auto;
  object-fit: contain;
}

footer {
  position: absolute;
  height: 10vh;
  width: 100vw;
  bottom: 0;
  display: flex;
  justify-content: center;
  gap: 24px;
  align-items: center;

}

a {
  color: white;
  text-decoration: none;
}

a:hover {
 text-decoration: underline;
 color: #1E354C;
}
