  body {
  background-color: white;
  color: white;
  font-family: 'Gay', system-ui, -apple-system, sans-serif;
  background-image: url('/img/newer.png');
  background-size: cover;
  }

  @font-face {
  font-family: 'Gay';
  src: url('/fonts/Gay.otf') format('opentype'); 
  }
  
  @font-face {
  font-family: 'Lavender';
  src: url('/fonts/Lavender.otf') format('opentype');  
  }

  p, li { 
  font-size: 40px; 
  }
  
  h1 { 
  font-size: 60px; 
  font-family: 'Lavender', system-ui, -apple-system, sans-serif;
  }
  
  h2 { 
  font-size: 48px; 
  }
    
.dark-wrapper {
  max-width: 1200px;
  width: max-content;
  min-width: 60%;
  margin: 20px auto;
  background-color: rgba(0, 0, 0, 0);
  border-radius: 24px;
  padding: 25px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0);
  box-sizing: border-box;
}

.dark-wrapper p, .dark-wrapper h1, .dark-wrapper h2, .dark-wrapper h3,
.dark-wrapper h4, .dark-wrapper h5, .dark-wrapper h6, .dark-wrapper summary,
.dark-wrapper li, .dark-wrapper span {
  color: #ffffff;
  text-shadow: 1px 1px 2px rgba(0,0,0,0.4);
  margin-top: 2px;
  margin-bottom: 2px;
}

.dark-wrapper h2, .dark-wrapper h3, .dark-wrapper h4,
.dark-wrapper h5, .dark-wrapper h6 {
  margin-top: 0;
  margin-bottom: 5px;
}

.dark-wrapper a {
  color: #ffdddd;
}

.free-flow-puzzle-container {
  column-width: 290px;
  column-gap: 15px;
  width: 100%;
}

.free-flow-puzzle-container:has(> .ui-section:only-child) {
  column-count: 1;
  display: flex;
  justify-content: center;
}

.ui-section {
  background-color: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 16px;
  padding: 15px 20px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
  box-sizing: border-box;
  display: inline-block;
  width: 100%;
  height: max-content;
  margin-bottom: 15px;
  break-inside: avoid;
  -webkit-backdrop-filter: blur(5px);
  backdrop-filter: blur(5px);
}

.ui-section iframe {
  display: block;
  max-width: 100%;
  border: none;
  border-radius: 10px;
  box-sizing: border-box;
}

.top-header-inline {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 25px;
  padding-left: 5px;
  padding-right: 5px;
}

@media (max-width: 990px) {
  .top-header-inline {
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
  }
}  