body {
  display: flex;
  position: fixed;
  flex-direction: column;
  user-select: none;
  align-items: center;
  justify-content: center;
  background-image: url(img/background1.png);
  background-repeat: no-repeat;
  background-size: cover;
  height: 100vh; 
  width: 100vw;  
  font-family: 'chillingsabrina';
  margin: 0;
  overflow: hidden; /* Verhindert Scrollen */
}

.canvasFull {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100vw;  
  height: 100vh;
  position: absolute;
  top: 0;
  left: 0;
}

canvas {
  display: block;
  width: 720px;
  height: 480px; 
  box-shadow: -5px 10px 6px -2px black;
  border-radius: 5px;
  background-image: url(img/startscreen_1.png);
  background-size: cover;
  background-position: center;
  background-color: rgba(0, 0, 0, 0.2);
}

.d-none {
  display: none;
}

.controls {
  display: flex;
  justify-content: space-around;
  align-items: center;
  width: 100%;
  height: 8%;
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 1;
}

button {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: transparent;
  border: none;
  border-radius: 5px;
  padding: 15px 20px;
  font-size: 20px;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.2s;
}

img {
  display: flex;
  margin: 0 12px;
}

.controls button:active {
  transform: scale(0.9);
}

@media only screen and (max-width: 720px) {
  .canvasFull {
    width: 100vw;
    height: 100vh;
  }

  canvas {
    width: 100%!important;
    height: 100%!important; 
  }
}
