.topHeader {
  background-color: #333;
  color: white;
  padding: 20px;
  text-align: center;
  border-radius: 25px;
  position: relative;
  overflow: hidden;
  z-index: 1;
  display: flex;
  flex-direction: column;
  box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.5);
}

  .overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: black;
    opacity: 0;
    animation-name: fade;
    animation-duration: 2s;
    animation-timing-function: ease-out;
    animation-fill-mode: forwards;
    z-index: 2;
    pointer-events: none;
  }
  
  .rotatingImage {
    position: absolute;
    top: 35%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation-name: spin;
    animation-duration: 2s;
    animation-timing-function: ease-out;
    animation-fill-mode: forwards;
    z-index: 3;
  }

  
  .underlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 4;
  }
  
  .staticImage {
    position: absolute;
    top: 55%;
    left: 50%;
    transform: translate(-50%, -50%);
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
  } 
  

  .myButton {
    background: linear-gradient(to bottom right, #ff1d74, #d817c8);
    border: 2px solid white;
    box-shadow: 0px 0px 10px rgba(0,0,0,0.3);
    color: white;
    padding: 15px 25px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 18px;
    margin: 4px 2px;
    cursor: pointer;
    border-radius: 25px;
    font-family: Gilroy, sans-serif;
    font-weight: bold;
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
    box-shadow: 0px 0px 20px rgba(0,0,0,0.4);
  } 
  
  .myButton:hover {
    transform: scale(1.05);
  } 

  .buttonContainer {
    display: flex;
    justify-content: center;
    gap: 20px;
    z-index: 2;
  }

  #canvas {
    position: fixed;
    top: 0;
    left: 0;
    z-index: -5;
  }

  body {
    background-color: rgb(23, 23, 23);
  }

  .logo {
    text-align: center;
    font-family: sans-serif;
    font-size: 36px;
    font-weight: bold;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.5), -2px -2px 5px rgba(0, 0, 0, 0.5);
  }

  .topHeader::before {
    content: '';
    position: absolute;
    width: 75%;
    height: 100%;
    bottom: 0;
    right: -75%;
    transform: skew(-45deg);
    transform-origin: bottom right;
    background-color: #ff6600;
    z-index: -1;
    box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.5);
    animation-name: slideIn;
    animation-duration: 2s;
    animation-delay: 2s;
    animation-fill-mode: forwards;
  }
  
  .topHeader::after {
    content: '';
    position: absolute;
    width: 50%;
    height: 100%;
    bottom: 0;
    right: -50%;
    transform: skew(-45deg);
    transform-origin: bottom right;
    background-color: #7e0062;
    z-index: -1;
    box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.5);
    animation-name: slideIn;
    animation-duration: 2s;
    animation-delay: 2s;
    animation-fill-mode: forwards;
  }

  @keyframes slide {
    from {
      left: -100px;
      opacity: 0;
    }
    to {
      left: 0;
      opacity: 1;
    }
  }
  
  .centered {
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .videos {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
  }
  
  .big-video {
    margin-right: 20px;
    box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.5);
  }
  
  .small-videos {
    display: flex;
    flex-direction: column;
    align-items: center;
    box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.5);
  }

  h2 {
    padding-top: 10px;
    font-family: "Gilroy", sans-serif;
    font-size: 48px;
    color: white;
    margin: 0;
    padding-left: 20px;
  }
  
  
  @keyframes slideIn {
    from {
      right: -75%;
    }
    to {
      right: 0;
    }
  }

  @keyframes fade {
    0% {
        opacity: 1;
    }
    50% {
        opacity: 1;
    }
    100% {
        opacity: 0;
    }
  } 

  @keyframes spin {
    0% {
      transform: translate(-50%, -50%) rotate(0deg);
      opacity: 0;
    }

    25% {
      transform: translate(-50%, -50%) rotate(-50deg);
      opacity: 1;
    }


    to {
      transform: translate(-50%, -50%) rotate(360deg);
      opacity: 0;
    }
  }

  .newsContainer {
    background-color: rgba(0, 0, 0, 0.5);
    padding: 10px 20px;
    box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.3);
    border-radius: 20px;
    overflow: hidden;
    width: 75%;
    margin: 20px auto;
    position: relative;
    padding-bottom: 30px;
  }