/* Basic Reset */
/* * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
*/ 
  
  /* Body Styling */
 /*body {
    font-family: Arial, sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background-color: #e5e5e5;
  } */
  
  /* Canvas Styling */
  #gameCanvas {
    border: 2px solid #333;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  }
  
  /* Score Styling */
  #score {
    position: center;
   
    font-size: 20px;
    color: #333;
    font-weight: bold;
  }
  
  /* Restart Button Styling */
  #restartButton {
   display: block;
  margin: 50px auto;
 
    transform: translate(-50%, -50%);
    padding: -5px -5px;
    background-color: #eebbbb;
    color: white;
    font-size: 18px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  }
  
  #restartButton:hover {
    background-color: #eebbbb;
  }
  
  #restartButton:active {
    background-color: #eebbbb;
  }
  .uja-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  text-align: center;
}

/* Optional: Score schön positionieren */
#score {
  margin: 8px 0;
  font-size: 24px;
}

/* Canvas (wird von p5.js erzeugt) */
canvas {
  display: block;
  margin: 20px auto;
}

/* Restart-Button sichtbar */
#restartButton {
 display: block;
  margin: 20px auto;
}
