bodyn {
  margin: 0;
  color: #444;
  background: #ecf0f1;
  font: 300 18px/18px Roboto, sans-serif;
}
*,:after,:before { box-sizing: border-box; }
.clearfix:after,.clearfix:before { content:''; display:table; }

/* Overlay Styles */
#timer-overlay {
  display: none; /* Startet versteckt */
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7); /* Dunkler Hintergrund */
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Timer Container Styles */
.timer-container {
  background: white;
  padding: 20px;
  border-radius: 10px;
  width: 300px;
  text-align: center;
  position: relative;
}

/* Timer Styles */
.clock-wrap {
  margin: auto;
  width: 240px;
  height: 240px;
  margin-top: 40px;
  position: relative;
  border-radius: 50%;
  background-color: #fff;
  box-shadow: 0 0 15px rgba(0,0,0,.15);
}

.clock {
  top: 50%;
  left: 50%;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  position: absolute;
  margin-top: -90px;
  margin-left: -90px;
  background-color: #feeff4;
}

.clock:before {
  top: 50%;
  left: 50%;
  width: 120px;
  height: 120px;
  margin-top: -60px;
  margin-left: -60px;
  border-radius: inherit;
  background-color: #ec366b;
  box-shadow: 0 0 15px rgba(0,0,0,.15), 0 0 3px rgba(255,255,255,.75) inset;
}

.count {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  color: black;
  font: 300 18px/18px Roboto, sans-serif;
  height: 100%;
  font-size: 68px;
  font-weight: 500;
  line-height: 50px;
  position: absolute;
}

.action_nix {
  margin-top: 20px;
}

.input-btn {
  width: 30%;
  padding: 12px;
  border-radius: 50px;
  background-color: #ec366b;
  color: #fff;
  text-transform: uppercase;
  border: none;
}

.input-btn:hover_nix {
  background-color: #d2355a;
}

.input-num {
  width: 20%;
  padding: 12px;
  border-radius: 50px;
}

/* Das aussehen des Buttons */
#open-timer {
  width: 140px;
  height: 50px;
  background-color: #ec366b;
  color: white;
font: 300 18px/18px Roboto, sans-serif;
  text-align: center;
  line-height: 50px;
  cursor: pointer;
  position: absolute;
  top: 600px;
  left: 50px;
  border-radius: 10px;
  border: 4px solid grey;  /* Weißer Rahmen mit einer Dicke von 2px */
  box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.3), 2px 2px 20px rgba(0, 0, 0, 0.2), -3px -3px 15px rgba(255, 255, 255, 0.4);

}