body {
    background-color: #1c1c1c;
    font-family: 'Courier New', Courier, monospace;
    color: #833ae8;
    font-size: 100%;
}

.container {
    display: grid;
    grid-template-columns: 15% 70% 15%;
    width: 100%; 
    box-sizing: border-box; 
}

.leftColumn, .middleColumn, .rightColumn {
    padding: 10px;
}

.middleColumn {
    /* overflow: hidden; */
    display: flex;
    justify-content: center;
    flex-direction: column;
}

ul {
    list-style-type: none; 
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
}
  
li {
    display: inline;
    padding-left: 1%;
    padding-right: 1%;
    font-size: 1.2em;
}

#mainTitle {
    display: flex;
    justify-content: center;
}

a {
    color: #833ae8;
}

a:hover {
    color: #09d291;
}

a:active {
    color: #09d291;
}

.mostImages {
    width: 100%;
    margin: auto;
    display: block;
    max-width: 100%;
    height: auto;
    border-radius: 2%;
    align-self: center;
}

#mainBanner {
    max-width: 100%;
}


h1 {
    font-weight: bold;
    text-align: center;
    font-size: 2.5em;
}


.twoColumn-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;  /* zwei Spalten */
    grid-template-rows: repeat(6, auto); /* sechs Reihen */
    gap: 30px 30px; 
    max-width: 1200px;
    margin: 3em auto;
  }
  
  .crew-item {
    display: contents; /* wichtig: Bild und Text nebeneinander im Grid */
  }
  
  .crew-item img {
    width: 100%;
    height: 100%;
    border-radius: 10px;
    object-fit: cover;    
  }
  
  .medium-text {
    margin: 1em 1em;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
  }
  
  .medium-text h2 {
    margin: 0 0 10px 0;
    font-weight: 600;
    font-size: 2.5em;
  }
  
  .medium-text p {
    margin: 0;
    line-height: 1.5;
    font-size:  1.2em;
    margin: 1em auto
  }

  #homebaseImgs {
    gap: 0px 30px;
  }

  button {
    color: #833ae8;
    border-color: #833ae8;
    border-radius: 10px;
    background-color: #1c1c1c;  
    font-size: 2em;
    margin: 10%;
  }

  button:hover {
    color:#09d291;
    border-color: #09d291;
    cursor: pointer;
  }

  .burger {
    display: none;
    font-size: 2rem;
    background: #1c1c1c;
    border: none;
    cursor: pointer;
    position: fixed;
    top: 1.5em;
    margin-left: 0%;
  }

  #h1ButLeftAligned {
    text-align: left;
  }

  #pFooter {
    text-align: center !important;
  }

/* Mobile */

  @media (max-width: 768px) {
    .mainNav {
      display: none;             /* ausblenden */
      flex-direction: column;
      gap: 0.5rem;
      background:#1c1c1c;
      padding: 1rem;
      position: fixed;
      top: 5.7em;                 
      left: 10%;
      border-radius: 8px;
      width: 50%
      
    }
  
    .mainNav.active {
      display: flex;             /* anzeigen */      
      border-color: #833ae8;
      border-radius: 10px;
      border-width: 1px;
      border-style: solid;
    }
  
    .burger {
      display: block;            /* anzeigen */
    }

    .burger:active {
      color:#09d291;
      border-color: #09d291;
    }

    .container {
      grid-template-columns: auto;
    }

    .twoColumn-grid {
      display: block;
    }

    #h1ButLeftAligned {
      text-align: center;
    }

  }