/* Global Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  color: #000000;
  overflow: hidden;
	font-family: Gotham, "Helvetica Neue", Helvetica, Arial, "sans-serif";
}
/* Detektor-Kreiselement */
.detector {
  position: absolute;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  pointer-events: none;
  background-color: rgb(255, 255, 255);
  mix-blend-mode: exclusion;
  z-index: 100;
}
.header {
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  background-color: #ffffff;
  color: #000000;
  text-align: center;
}
.section {
  height: 100vh;
  width: 100%;
}
#section1 {
  background-color: rgba(0, 158, 224, 100%);
}
#section2 {
  background-color: rgba(0, 188, 212, 100%);
  color: #fff;
}

.interactive {
  transition: transform 0.3s ease;
  /* Optionale Styling-Anpassungen für interaktive Elemente */
}
.interactive-section {
  cursor: crosshair; /* Standard-Mauszeiger verstecken */
}
.parallax-container {
  width: 100vw;
  height: 100vh;
  overflow: hidden;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}
.content {
  position: absolute;
  width: 200vw; /* Breiterer Bereich für das Parallax-Schwenken */
  height: 100vh;
  left: 50%; /* Zentriert im Container */
  transform: translateX(-50%); /* Inhalt bleibt zentriert */
}

@keyframes flacker {
    0%, 100% {
        filter: brightness(0.9);
    }
    20%, 80% {
        filter: brightness(1.0);
    }
    40%, 60% {
        filter: brightness(0.9);
    }
    50% {
        filter: brightness(1.0);
    }
}
.custom-design {
  width: 200vw; /* Dieselbe Breite wie der Parallax-Bereich */
  height: 100vh;
background: radial-gradient(circle, #00bcd4 25%, #009ee0 50%, #000000 90%);
 animation: flacker 2s infinite alternate;
}




.desk {
  background: rgb(131, 58, 180);
  background: -moz-linear-gradient(180deg, #000 0%, #009ee0 75%);
  background: -webkit-linear-gradient(180deg, #000 0%, #009ee0 75%);
  background: linear-gradient(180deg, #000 0%, #009ee0 75%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#00bcd4", endColorstr="#009ee0", GradientType=1);
  width: 50%;
  height: 250px;
  transform: translateX(50%);
  position: absolute;
  bottom: 0;
  -moz-border-radius: 20px 20px 0 0;
  -webkit-border-radius: 20px 20px 0 0;
  -o-border-radius: 20px 20px 0 0;
  border-radius: 20px 20px 0 0;
  z-index: 0;
}
.computer{
  width: 670px;
  height: 420px;
  position: absolute;
  bottom: 250px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: flex-end;
  justify-content: center;
}
.monitor{
  width: 670px;
  height: 330px;
  background: #222222;
  position: absolute;
  bottom: 70px;
  -moz-border-radius: 10px;
  -webkit-border-radius: 10px;
  -o-border-radius: 10px;
  border-radius: 10px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  box-shadow: 0px 0px 200px rgb(0, 0, 0, 0.55);
  overflow: hidden;
	z-index: 1;
}
.display{
  width: 650px;
  height: 310px;
  background: #111;
  position: absolute;
  bottom: 10px;
  -moz-border-radius: 10px;
  -webkit-border-radius: 10px;
  -o-border-radius: 10px;
  border-radius: 7px;
  z-index: 2;
  box-shadow: 0px 0px 80px rgba(0, 0, 0, 0.55) inset;	
}
.systemfont{
font-size: 120%;
}
.taskbar{
	width: 100%;
	height: 20px;
	background: #303030;
}
.display-content{
color: #00ff00;
  font-family: 'Courier New', Courier, monospace;
  font-size: 14px;
  padding: 10px 50px;
  overflow-Y: scroll;
  white-space: preserve;
  text-wrap: balance;
  line-height: 1.5;
  display: block;
  height: 270px;
}
.display-content div:first-child {
    font-weight: bold;
    color: #009ee0; /* Leichte Variation für die Header-Zeile */
}

.staender{
  background: #111111;
  position: absolute;
  bottom: 0;
  height: 200px;
  width: 150px;
}
.platte{
  background: rgb(255, 255, 255);
  width: 100%;
  height: 100px;
  -moz-border-radius: 10px 10px 0 0;
  -webkit-border-radius: 10px 10px 0 0;
  -o-border-radius: 10px 10px 0 0;
  border-radius: 10px 10px 0 0;
  z-index: 2;
  position: absolute;
}
.tischbein{
width: 40px;
  height: 160px;
  background: rgb(255, 255, 255);
  z-index: 1;
  margin-top: 95px;
  position: absolute;
}
.tischbein-links{

}
.tischbein-rechts{
  right: 0;
}


.stuhl{
width: 100%;
  height: auto;
  max-width: 500px;
  position: absolute;
  left: 50%;
  top: 25%;
  transform: translate(-50%, -50%); /* Verschiebt das Element so, dass es im Zentrum verankert wird */
  transform-origin: center center; /* Zentrum als Ursprung für Transformationen */
	z-index: 2;
}
.lehne{
width: 400px;
  height: 600px;
  background: #222222;
  -moz-border-radius: 25px 25px 0 0;
  -webkit-border-radius: 25px 25px 0 0;
  -o-border-radius: 25px 25px 0 0;
  border-radius: 25px 25px 0 0;
  margin-bottom: -150px;
	
}
.kopf {
width: 200px;
  height: 200px;
  position: absolute;
  z-index: -1;
  background: #ffffff;
  border-radius: 50%;
  top: -10%;
  left: 200px;
  transform: translate(-50%, -50%);
  transform-origin: center center;
}
.haar{
width: 200px;
  height: 160px;
  position: absolute;
  z-index: -1;
  background: -moz-radial-gradient(circle, #111 0%, #000 100%);
  background: -webkit-radial-gradient(circle, #111111 0%, #000000 100%);
  background: radial-gradient(circle, #e1a93e 0%, #261104 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#111111", endColorstr="#000000", GradientType=1);
  border-radius: 500% 500% 100px 100px;
  top: 50px;
  left: 100px;
  transform: translate(-50%, -50%) rotate(0deg);
  transform-origin: center center;
}


.scroll-button {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  padding: 10px 20px;
  font-size: 1rem;
  z-index: 10;
}