.left {
    text-align: left;
    padding-left: 500px;
}

.centre {
    text-align: center;
}

.right {
    text-align: right;
    padding-right: 500px;
}

.navigation {
    display: flex;
    justify-content: center;
    gap: 20px;
    background-color: black;
    padding: 15px 0;
}

.navigation a{
    color: cornsilk;
    text-decoration: none;
    font-weight: 500;
    padding: 10px 20px;
    border: 1px solid white;
    border-radius: 25px;
    transition: all 0.3s ease;
}

.navigation a:hover{
    background-color: white;
    color: black;
}

.video-container {
    position: relative;
    height: 400px; /* Adjust the height of your banner */
    overflow: hidden;
  }
  
  .video-container video {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    object-fit: cover; /* ensures the video covers the container */
    transform: translate(-50%, -50%);
    z-index: 0;
  }
  
  .overlay-content {
    position: absolute;
    top: 20px;
    width: 100%;
    text-align: center;
  }
  
  .navigation a {
    color: white;
    text-decoration: none;
    margin: 0 15px;
    font-weight: bold;
  }
  
  .navigation a:hover {
    color: lightgray;
  }

  .overlay-content img {
    margin-top: 40px;
    background-color: black;
    padding: 15px 0;
    padding-left: 15px;
    padding-right: 15px;
  }

  #background, #albums, #awards, #media {
    padding: 60px 10%;
  }
  
  #albums, #media {
    background-color: #f9f9f9; /* alternate background */
  }

  body {
    animation: fadeIn 1s ease-in;
    font-family: 'Poppins', sans-serif;
    color: #222;
  }
  @keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
  }