html {
  background: url("../windowsxp.jpg") no-repeat center center fixed; 
  background-size: cover;
  font-family: 'Courier New', Courier, monospace;
  font-weight: bold;
}

.iconBeruf {
  text-align: center; 
  width: min-content;
  position: fixed;
  top: 20%; 
  left: 10%;
  cursor: grab;
}

.iconStudium {
  text-align: center; 
  width: min-content;
  position: fixed;
  top: 40%; 
  left: 30%; 
  cursor: grab;
}

.iconAusland {
  text-align: center; 
  width: min-content;
  position: fixed;
  bottom: 35%; 
  left: 20%; 
  cursor: grab;
}

.iconEng {
  text-align: center; 
  width: min-content;
  position: fixed;
  top: 65%; 
  right: 20%; 
  cursor: grab;
}

.iconSoft {
  text-align: center; 
  width: min-content;
  position: fixed;
  top: 40%; 
  right: 30%; 
  cursor: grab;
}

.icon {
  height: 60px;
  width: 70px;
}

.waste {
  text-align: center; 
  width: min-content;
  position: fixed; 
  bottom: 70px; 
  right: 10px;
}

figcaption { 
  text-align: center;
}

.taskLeiste { 
  background-color: lightblue;
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100%;
  display: flex;
  align-items: center;
  gap: 30px;
  padding-left: 20px;
  padding-top: 5px;
  padding-bottom: 5px;
}

.task {
  background-color: white;
  border-radius: 5px;
  padding-left: 5px;
  padding-right: 5px;
  cursor: grab;
 }

#homeButton {
  border: 0;
  font-family: MS Gothic, sans-serif;
  font-weight: bold;
  font-size: larger;
  background-color: white;
  height: 50px;
  width: 50px;
  border-radius: 50%;
}

#menu {
  transition: all 0.5s ease;
  overflow: hidden;
  background-color: #99C4D2;
  height: 200px;
  width: 300px;
  position: fixed;
  bottom: 65px;
  left: 5px;
  display: none;
  border-radius: 5%;
  border-color: #99C4D2;
  border: 10px;
}

.credit {
  text-align: center;
  position: fixed; 
  right: 10px;
  top: 0;
}

#credits {
  font-size: 20px;
  font-family: 'Courier New', Courier, monospace;
}

.coin {
  animation: jumpingAnimation 0.6s 0.1s ease-in infinite;
}

.coin img {
  width: 80px;
  padding: 10px;
}

@keyframes jumpingAnimation {
  0% {
    transform: translate3d(0, 0,0);
  }
  50% {
    transform: translate3d(0, 15px,0);
  }
  100% {
    transform: translate3d(0, 0, 0);
  }
}