body {
    margin: 0;
    padding: 0;
    height: 100vh; /* Volle Bildschirmhöhe */
    display: flex;
    justify-content: center; /* Horizontal zentrieren */
    align-items: center; /* Vertikal zentrieren */
    background-image: url("https://cdn.neowin.com/news/images/uploaded/2023/06/1686292349_windows_xp_bliss_wallpaper_4k_story.jpg"); /* Optional: Hintergrundfarbe */
    background-size: cover;
}

#Main {
    position: absolute;
     z-index: 1;
}

.Window {
    cursor: auto;
    user-select: none;
    text-align: center;
    width: 800px; /* Breite anpassen */
    border: 1px solid #ccc;
    border-radius: 8px 8px 0 0; /* Nur oben abgerundet */
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    font-family: Arial, sans-serif;
    overflow: hidden; /* Verhindert, dass Inhalte überragen */
    background: black;
}

.title-container {
    background: linear-gradient(to bottom, #e0e0e0, #c0c0c0);
    padding: 8px 12px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #aaa;
    cursor: grab; /* "Greifbarer" Cursor für Drag-Effekt */
    user-select: none; /* Verhindert Textauswahl */
}

.title {
    font-weight: bolder;
    color: #333;

    /* Schließen-Button */
    }
    
.close-btn {
    background: #ff8585;
    border: none;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    color: white;
    font-weight: bold;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}
    
.content-container {
    padding-left: 100px;
    padding-right: 100px;
    padding-bottom: 70px;
    padding-top: 70px;
    }

.centered-gif {
    display: block; /* GIF als Blockelement (für margin: auto) */
    margin: 0 auto 20px; /* Zentriert das GIF + Abstand nach unten */
    max-width: 200px; /* Optional: GIF-Größe begrenzen */
}

.centered-text {
    margin-bottom: 20px; /* Abstand unter dem Text */
    color: white; /* Optional: Textfarbe */
}

.centered-button {
    padding: 30px 0px;
    margin: 10px 30px;
    width: 100px;
    font-size: 16px;
    background-color: grey; /* Grüner Button */
    color: black;
    border-radius: 10px;
    cursor: auto;
}

.centered-button:hover {
    transform: scale(1.5);
    transition: 0.3s;
    background-color: yellow; /* Dunkleres Grün beim Hover */
}

#tape {
    margin: -80px;
    z-index: 0;
    position: absolute;
}

#silly {
    z-index: -3;
    width: 200px;

}

/* ===== FENSTER-STILE ===== */
.window {
  position: absolute;
  background-color: #f1f1f1;
  border: 1px solid #d3d3d3;
  text-align: center;
  z-index: 9;
  min-width: 300px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.2);
  border-radius: 8px;
  overflow: hidden;
}

.window-header {
  padding: 10px;
  cursor: move;
  background-color: #2196F3;
  color: #fff;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.window-content {
  padding: 20px;
}

.window-close-btn {
  background: #ff5c5c;
  border: none;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  color: white;
  font-weight: bold;
  cursor: pointer;
}