:root {
        --header-image: url('/img/photo/mj.png');
        --body-bg-image: url('/img/photo/whitebrick-wal.png');

 /* colors */
        --content: #43256E;
      }

            body {
                font-family: 'Nunito', sans-serif;
                margin: 0;
                background-color: #2D2D2D;
                /* you can delete the line below if you'd prefer to not use an image */
                background-size: 65px;
                color: #eaeaea;
                background-image: var(--body-bg-image);
            }

            *{
                box-sizing: border-box;
            }


            /* if you want something (like the header) to be Wider than
    the other elements, you will need to move that div outside
    of the container */
            #container {
                max-width: 1400px;
                /* this is the width of your layout! */
                /* if you change the above value, scroll to the bottom
      and change the media query according to the comment! */
                margin: 0 auto;
                /* this centers the entire page */
            }

            /* the area below is for all links on your page
    EXCEPT for the navigation */
            #container a {
                color: #000000;
                font-weight: bold;
                /* if you want to remove the underline
      you can add a line below here that says:
      text-decoration:none; */
            }

            #header {
                width: 100%;
                background-color: #2d2d2d;
                /* header color here! */
                height: 150px;
                /* this is only for a background image! */
                /* if you want to put images IN the header, 
      you can add them directly to the <div id="header"></div> element! */
                background-image: var(--header-image);
                background-size: 100%;
            }

            /* navigation section!! */
            #navbar {
                height: 55px;
                background-color: #000000;
                /* navbar color */
                width: 100%;
            }

            #navbar ul {
                display: flex;
                padding: 0;
                margin: 0;
                list-style-type: none;
                justify-content: space-evenly;
            }

            #flex {
                display: flex;
            }

            /* this colors BOTH sidebars
    if you want to style them separately,
    create styles for #leftSidebar and #rightSidebar */
            aside {
                background-color: #d4d4d4;
                width: 200px;
                padding: 20px;
                font-size: smaller;
                /* this makes the sidebar text slightly smaller */
            }


            /* this is the color of the main content area,
    between the sidebars! */
            main {
                background-color: #1e1e1e;
                flex: 1;
                padding: 20px;
                order: 2;
            }

            /* what's this "order" stuff about??
    allow me to explain!
    if you're using both sidebars, the "order" value
    tells the CSS the order in which to display them.
    left sidebar is 1, content is 2, and right sidebar is 3! */

            #leftSidebar {
                order: 1;
            }

            #rightSidebar {
                order: 3;
            }

            footer {
                background-color: #2d2d2d;
                /* background color for footer */
                width: 100%;
                height: 40px;
                padding: 10px;
                text-align: center;
                /* this centers the footer text */
            }

      /*font und style*/
            h1 {
                color: #ecffea;
                font-family: 'Orbitron', sans-serif;
                letter-spacing: 2px;
                text-shadow:
                    0 0 6px #18CC0A,
                    0 0 14px #18CC0A,
                    0 0 30px #18CC0A,
                    0 0 60px #18CC0A;
            }
            h1 {
                font-size: 28px;
                animation: flicker 3s ease-in-out infinite;
            }
            
            @keyframes flicker {
                0%, 100% { text-shadow: 0 0 6px #18CC0A, 0 0 14px #18CC0A, 0 0 30px #18CC0A; }
                50%       { text-shadow: 0 0 12px #18CC0A, 0 0 28px #18CC0A, 0 0 60px #18CC0A, 0 0 100px #18CC0A; }
            }
            
            h2 {
                color: #9ce08e;
                font-family: 'Orbitron', sans-serif;
                letter-spacing: 2px;
            }
            
            h3 {
                color: #000000;
            }
            strong {
                color: #18CC0A;
            }
            
            .center {
                text-align: center;
            }
            
            .box {
                background-color: #000000;
                border: 1px solid #18CC0A;
                padding: 10px;
            }
 
            .box p {
                color: #18CC0A;
            }
 
            #topBar {
                width: 100%;
                height: 55px;
                padding: 10px;
                font-size: smaller;
                background-color: #2d2d2d;
            }


            /* BELOW THIS POINT IS MEDIA QUERY */

            /* so you wanna change the width of your page? 
    by default, the container width is 900px.
    in order to keep things responsive, take your new height,
    and then subtrack it by 100. use this new number as the 
    "max-width" value below
    */

            @media only screen and (max-width: 800px) {
                #flex {
                    flex-wrap: wrap;
                }

                aside {
                    width: 100%;
                }

                /* the order of the items is adjusted here for responsiveness!
      since the sidebars would be too small on a mobile device.
      feel free to play around with the order!
      */
                main {
                    order: 1;
                }

                #leftSidebar {
                    order: 2;
                }

                #rightSidebar {
                    order: 3;
                }

                #navbar ul {
                    flex-wrap: wrap;
                }
            }
    


/* ==============================
   VIDEOSECTION
   ============================== */
.video-section {
    border: 2px solid #eaeaea;
    background-color: #d4d4d4;
    padding: 10px;
    margin: 16px 0;
}
.video-title {
    color: #000000;
    font-family: 'Orbitron', sans-serif;
    letter-spacing: 2px;
    border-bottom: 1px solid #000000;
    padding-bottom: 6px;
    margin-top: 0;
}
.video-content {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}
.video-content iframe {
    border: 1px solid #eaeaea;
}


/* ==============================
   MUSICPLAYER WIN95 
   ============================== */
.player-wrap {
  float: left;
  margin: 0 16px 16px 0;
  width: 200px;
  border: 2px solid #000;
  box-shadow: 4px 4px 0 #000;
  background: #c0c0c0;
  font-family: "Courier New", monospace;
  box-sizing: border-box;
}

.win-titlebar {
  background: #000080;
  color: #fff;
  font-size: 11px;
  font-weight: bold;
  padding: 3px 6px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.win-close {
  background: #c0c0c0;
  color: #000;
  border-top: 2px solid #fff;
  border-left: 2px solid #fff;
  border-right: 2px solid #808080;
  border-bottom: 2px solid #808080;
  font-size: 10px;
  width: 14px;
  height: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-weight: bold;
}

.player-img {
  width: 100%;
  height: 196px;
  display: block;
  object-fit: cover;
  border-bottom: 2px solid #808080;
}

.player-img-placeholder {
  width: 100%;
  height: 196px;
  background: #111;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #555;
  font-size: 11px;
  border-bottom: 2px solid #808080;
  box-sizing: border-box;
}

.player-info {
  padding: 3px 6px;
  font-size: 10px;
  color: #000;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  border-bottom: 1px solid #808080;
}

.player-info span { font-weight: bold; }

.progress-wrap {
  padding: 4px 6px 2px;
  border-bottom: 1px solid #808080;
}

.progress-bar-outer {
  background: #fff;
  border-top: 1px solid #808080;
  border-left: 1px solid #808080;
  border-right: 1px solid #fff;
  border-bottom: 1px solid #fff;
  height: 8px;
  width: 100%;
  position: relative;
  cursor: pointer;
  box-sizing: border-box;
}

.progress-bar-inner {
  background: #000080;
  height: 100%;
  width: 0%;
}

.time-row {
  display: flex;
  justify-content: space-between;
  font-size: 8px;
  color: #444;
  margin-top: 2px;
}

.controls {
  display: flex;
  justify-content: center;
  gap: 3px;
  padding: 5px 6px;
  border-bottom: 1px solid #808080;
  box-sizing: border-box;
}

.win-btn {
  background: #c0c0c0;
  border-top: 2px solid #fff;
  border-left: 2px solid #fff;
  border-right: 2px solid #404040;
  border-bottom: 2px solid #404040;
  box-shadow: 1px 1px 0 #000;
  font-size: 9px;
  cursor: pointer;
  font-family: "Courier New", monospace;
  color: #000;
  width: 36px;
  height: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  line-height: 1;
  box-sizing: border-box;
}

.win-btn:active {
  border-top: 2px solid #404040;
  border-left: 2px solid #404040;
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
  box-shadow: none;
  padding-top: 1px;
  padding-left: 1px;
}

.vol-wrap {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 4px 6px 5px;
  font-size: 9px;
  color: #000;
  box-sizing: border-box;
}

input[type=range].win-slider {
  -webkit-appearance: none;
  appearance: none;
  flex: 1;
  height: 4px;
  background: #fff;
  border-top: 1px solid #808080;
  border-left: 1px solid #808080;
  border-right: 1px solid #fff;
  border-bottom: 1px solid #fff;
  outline: none;
  cursor: pointer;
  margin: 0;
  padding: 0;
}

input[type=range].win-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 10px;
  height: 16px;
  background: #c0c0c0;
  border-top: 2px solid #fff;
  border-left: 2px solid #fff;
  border-right: 2px solid #404040;
  border-bottom: 2px solid #404040;
  box-shadow: 1px 1px 0 #000;
  border-radius: 0;
  cursor: pointer;
}

input[type=range].win-slider::-moz-range-thumb {
  width: 10px;
  height: 16px;
  background: #c0c0c0;
  border-top: 2px solid #fff;
  border-left: 2px solid #fff;
  border-right: 2px solid #404040;
  border-bottom: 2px solid #404040;
  box-shadow: 1px 1px 0 #000;
  border-radius: 0;
  cursor: pointer;
}

audio { display: none; }

/*HOMEBUTTON*/
.btn-home {
    display: block;
    width: 100%;
    background: linear-gradient(180deg, 
        rgba(255,255,255,0.9) 0%, 
        rgba(200,255,200,0.6) 40%, 
        rgba(0,0,0,0.1) 41%, 
        rgba(20,20,20,0.8) 100%);
    color: #1a1a1a;
    border: 3px solid #18CC0A;
    box-shadow: 0 0 10px #18CC0A, 0 0 20px #18CC0A, inset 0 1px 0 rgba(255,255,255,0.9);
    font-family: 'Orbitron', sans-serif;
    font-size: 11px;
    letter-spacing: 2px;
    font-weight: bold;
    padding: 12px 5px;
    cursor: pointer;
    text-align: center;
    text-decoration: none;
    border-radius: 50px;
    margin-bottom: 8px;
    transition: all 0.2s ease;
    position: relative;
    overflow: hidden;
}

.btn-home::before {
    content: '';
    position: absolute;
    top: 0; left: 5%;
    width: 90%; height: 45%;
    background: linear-gradient(180deg, rgba(255,255,255,0.95) 0%, rgba(255,255,255,0.3) 100%);
    border-radius: 50px 50px 30px 30px;
}

.btn-home:hover {
    box-shadow: 0 0 18px #18CC0A, 0 0 40px #18CC0A;
    color: #000;
}

.btn-home:active {
    transform: scale(0.96);
}