   @font-face {
     font-family: 'LuckiestGuy';
     src: url(font/LuckiestGuy-Regular.tff);
   }
body {
  overflow-x: hidden;
  display: flex;
  flex-direction: column;
  min-width: 0;
  text-align: center;
  background-color: white;
  color: black;
}  
.center {
    display: flex;
    align-items: center;
    flex-direction: column;
}

.gradient-background {
  background: linear-gradient(90deg, #F9A03F, #FAC668);
  background-size: 200% 200%; /* bigger so it has room to animate */
  animation: gradient-animation 5s ease infinite;
}

@keyframes gradient-animation {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}
@media (max-width: 768px) {
  body {
    font-size: 14px; /* slightly smaller text */
  }

  .sidebar {
    display: none; /* or stack it on top instead of side */
  }

  .content {
    width: 100%; /* make main content take full width */
  }
}
img, video {
  max-width: 100%;
  height: auto;
}