* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  html {
    height: 100%;
    width: 100%;
    background: url('../img/background.jpg') no-repeat center center fixed;
    background-size: cover;
  }
  
  body {
    min-height: 100%;
    width: 100%;
    font-family: 'Electrolize', sans-serif;
  }
  
  /* Header */
  header {
    position: sticky;
    background-color: rgb(0, 81, 255);
    z-index: 1000;
    top: 0;
    padding: 3px;
    width: 100%;
    height: 50px;
  }
  
  /* Navigation */
  nav ul {
    list-style-type: none;
    display: flex;
    justify-content: space-between;
    margin-top: 10px;
    width: 100%;
  }
  
  nav ul li {
    margin-left: 40px;
    margin-right: 40px;
  }
  
  nav ul li a {
    text-decoration: underline;
    color: rgb(255, 255, 255);
    font-size: 24px;
  }
  
  nav ul li a:hover {
    color: rgb(255, 0, 237);
  }
  
  /* Main Content */
  
  /*Logo Styling */
  .logo-container {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: 4%;
  }
  
  .logo-container img {
    width: 380px;
    height: auto;
  }
  
  .logo-container img:hover {
    filter: drop-shadow(0 0 35px rgb(255, 0, 237));
    transition: filter 0.3s ease;
  }
  
  /*titel*/
  h1 {
    color: rgb(255, 255, 255);
    font-size: 85px;
    text-align: center;
    font-family: 'electrolize', sans-serif;
    margin-top: -2%;
    margin-bottom: 8%;
  }
  
  h2 {
    color: white;
    text-decoration-line: underline;
    font-size: 25px;
    text-align: left;
    font-family: 'electrolize', sans-serif;
    font-weight: lighter;
    padding-left: 5%;
    margin-bottom: 1%;
  }
  
  h3 {
    color: white;
    font-size: 85px;
    font-weight: bold;
    text-align: left;
    font-family: 'electrolize', sans-serif;
    padding-left: 5%;
    padding-right: 5%;
    margin-top: 0;
    margin-bottom: 5%;
  }
  
  h4 {
    color: white;
    font-size: 85px;
    font-weight: bold;
    text-align: left;
    font-family: 'electrolize', sans-serif;
    padding-left: 5%;
    padding-right: 5%;
    margin-top: 0%;
    margin-bottom: 2%;
  }
  
  p {
    color: white;
    font-size: 32px;
    text-align: justify;
    font-family: 'electrolize', sans-serif;
    font-weight: lighter;
    padding-left: 5%;
    padding-right: 5%;
    margin-top: 0;
    margin-bottom: 5%;
  }
  
  .final-line {
    text-align: left;
    font-weight: bold;
  }
  
  /* Button */
  .button-container {
    display: flex;
    justify-content: center;
    align-items: center;
  }
  
  .button {
    background-color: rgb(255, 0, 237);
    color: white;
    height: 130px;
    width: 340px; 
    border: none;
    border-radius: 30px;
    font-family: 'Press Start 2P', sans-serif;
    text-align: center;
    text-decoration: none;
    font-size: 45px;  
    cursor: pointer;
    transition: transform 0.3s ease;
    margin-top: -20px;
  }
  
  .button:hover {
    transform: scale(1.2);
  }
  
  /* Play */
  .box-container {
    display: flex;
    flex-direction: column; /* Boxen untereinander anordnen */
    width: 200px; /* Setze eine Breite, um die Boxen auf der Seite mittig darzustellen */
  }
  
  .box {
    display: flex;
    flex-direction: column; /* wichtig: stapelt Inhalt vertikal */
    align-items: center;    /* zentriert Inhalt horizontal */
  }

  
  .images {
    width: 100%; /* oder eine feste Breite, z.B. 300px */
    text-align: center; /* Bilder zentrieren */
  }
  
  .images img {
    max-width: 100%;
    box-sizing: border-box;  
    border: solid 3px rgb(255, 0, 237);
    box-shadow: 6px 6px 6px -3px rgba(0, 0, 0, 0.7); /* harter Schatten rechts */

  }

  .arrows {
    text-align: center; /* Buttons zentrieren */
    width: 100%; /* evtl. passend zur Bildbreite */
  }
  
  .arrow {
    font-size: 15px;
    cursor: pointer;
    background-color: rgb(255, 0, 237);
    padding: 0px 145px; /* breiter durch mehr horizontale Polsterung */
    transition: background-color 0.3s ease;
    box-shadow: 6px 6px 6px -3px rgba(0, 0, 0, 0.7); /* harter Schatten rechts */
  }
  
  .arrow:hover {
    background-color: white; /* etwas dunkler beim Hover */
  }
  
  /* Optional: Bilder im Slider standardmäßig ausblenden, außer das erste */
  .images img {
    display: none;
    max-width: 100%;
  }
  
  /* Fits-komplett */
  .gallery {
    display: flex;
    flex-direction: column;
    gap: 50px; /* Abstand zwischen den Einheiten */
    padding-left: 6%;
    padding-right: 6%;
    margin-bottom: 5%;
  }
  
  .outfit-set {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, auto);
  }
  
  figure {
    margin: 0;
    position: relative;
    overflow: hidden;
    display: flex;             /* Flexbox aktivieren */
    justify-content: center;   /* horizontal zentrieren */
    align-items: center;       /* vertikal zentrieren */
  }
  
  figure img {
    display: block;
    width: 70%;
    height: auto;
    border: solid 3px rgb(255, 0, 237);
    box-shadow: 6px 6px 6px -3px rgba(0, 0, 0, 0.7); /* harter Schatten rechts */
  }
  
  figcaption {
    position: absolute;
    bottom: 0;
    left: 94px;
    background: rgba(255, 0, 237, 0.8);
    color: white;
    font-size: 20px;
    padding: 4px 8px;
    font-family: 'Electrolize', sans-serif;
  }
  
  @keyframes moveText {
    0% {
      transform: translateX(100%); /* Der Text startet rechts außerhalb des Footers */
    }
    100% {
      transform: translateX(-100%); /* Der Text endet links außerhalb des Footers */
    }
  }
  
  .mismatch-container {
    text-align: center;
  }
  
  #mismatch-btn {
    background-color: rgb(255, 0, 237);
    color: #fff;
    font-family: 'Press Start 2P', cursive;
    font-size: 30px;
    padding: 10px 20px;
    border: none;
    cursor: pointer;
    letter-spacing: 1px;
    border-radius: 4px;
    margin-bottom: 50px;
    transition: transform 0.3s ease;
  }
  
  #mismatch-btn:hover {
    transform: scale(1.2);  }
  /* Footer */
  footer {
    position: fixed;
    left: 0;
    bottom: 0;
    width: 100%;
    background-color: rgb(0, 81, 255);
    color: rgb(255, 0, 237);
    text-align: center;
    height: 20px;
    overflow: hidden;
    z-index: 10;
  }
  
  .footer-text {
    margin: 0;
    text-align: center;
    font-family: 'electrolize', sans-serif;
    position: absolute;
    white-space: nowrap;
    animation: moveText 15s linear infinite;
    font-size: 15px;
    min-width: 100%; /* Damit der Text immer die gesamte Breite des Footers abdeckt */
  }
  
  main {
    padding-bottom: 60px;
  }
  


/* === Responsive Styles === */
@media (max-width: 768px) {
  nav ul {
    list-style-type: none;
    display: flex;
    justify-content: space-between;
    margin-top: 10px;
    width: 100%;
  }
  
  nav ul li {
    margin-left: 40px;
    margin-right: 40px;
  }
  
  nav ul li a {
    text-decoration: underline;
    color: rgb(255, 255, 255);
    font-size: 24px;
  }
  
  nav ul li a:hover {
    color: rgb(255, 0, 237);
  }

  
  /* Logo */

.logo-container{
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: 20%;
    margin-top: 20px;
}

  .logo-container img {
    width: 250px;

  }

  /* Titel */
  h1 {
    font-size: 50px;
    margin-top: 20px;
    margin-bottom: 20px;
  }

  h2 {
    font-size: 18px;
    padding-left: 5%;
  }

  h3, h4 {
    font-size: 40px;
    padding-left: 5%;
    padding-right: 5%;
  }

  p {
    font-size: 18px;
    padding-left: 5%;
    padding-right: 5%;
  }

  /* Button */
  .button {
    margin-top: 100px;
    width: 60%;
    height: 70px;
    font-size: 35px;
  }

  /* Fits Seite */
  .gallery {
    padding-left: 5%;
    padding-right: 5%;
    gap: 30px;
  }

  .outfit-set {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }

  figure img {
    width: 90%;
  }

  figcaption {
    font-size: 14px;
    left: 10%;
  }

  /* Box Container */
  .box-container {
    width: 200px;       /* gleiche Breite wie Desktop */
    margin: 20px auto;  /* zentriert mit Abstand zum Rand */
  }
  
  /* Box bleibt vertikal gestapelt und zentriert */
  .box {
    flex-direction: column;
    align-items: center;
  }
  
  /* Bilder volle Breite der Box, zentriert */
  .images {
    width: 100%;
    text-align: center;
  }
  
  .images img {
    max-width: 100%;
    height: auto;
    box-sizing: border-box;
    border: solid 3px rgb(255, 0, 237);
    box-shadow: 6px 6px 6px -3px rgba(0, 0, 0, 0.7);
  }
  
  /* Pfeile nebeneinander und zentriert */
  .arrows {
    display: flex;              /* horizontal anordnen */
    justify-content: center;    /* zentrieren */
    width: 100%;                /* volle Breite der Box */
  }
  
  /* Pfeile gleiche Breite, kleiner als Desktop */
  .arrow {
    flex: 1;                   /* gleicher Platz für beide Pfeile */
    font-size: 10px;
    cursor: pointer;
    background-color: rgb(255, 0, 237);
    padding: 2px 0;            /* vertikale Polsterung */
    box-shadow: 6px 6px 6px -3px rgba(0, 0, 0, 0.7);
    text-align: center;        /* Text zentrieren */
    transition: background-color 0.3s ease;
  }
  
  .arrow:hover {
    background-color: white;
  }

  #mismatch-btn {
    font-size: 18px;
    padding: 10px 20px;
  }

  /* Footer */
  .footer-text {
    font-size: 12px;
  }
} /* Closing @media (max-width: 768px) */

@media (max-width: 480px) {
  h1 {
    font-size: 50px;
  }

  h3, h4 {
    font-size: 30px;
  }

  p {
    font-size: 16px;
  }

  .button {
    font-size: 30px;
    margin-top: 30px;
  }

  nav ul li a {
    font-size: 16px;
  }

  figcaption {
    font-size: 12px;
  }

  .footer-text {
    font-size: 15px;
  }
}  