
body {
    display: block;
    background: black;
    color: white;

    margin: 20px;
}

/* BG */
.bg-image {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: url('resources/PenguinParty.png') center center / cover no-repeat;
  filter: grayscale(100%) blur(20px) brightness(0.4);
  z-index: -2;
  pointer-events: none;
}

.bg-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
}



/* HEADER */
.header-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin: 30px 0;
  flex-wrap: wrap; 
}

.header-text {
  flex: 1 1 auto;
  min-width: 250px;
}

.project-btn {
  background-color: #24292e;
  color: white;
  padding: 10px 18px;
  font-weight: 600;
  border-radius: 12px;
  white-space: nowrap;
  transition: background-color 0.3s ease;
}

.project-btn:hover {
  background-color: #444c56;
}


/* TRAILER */
.video-container {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  margin: 20px auto;
  width: 100%;
  max-width: 800px;
  border-radius: 12px;
  box-shadow: 0 0 20px rgba(150, 100, 255, 0.4);
}

.video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 12px;
}