/*
 * This is a manifest file that'll be compiled into application.css.
 *
 * With Propshaft, assets are served efficiently without preprocessing steps. You can still include
 * application-wide styles in this file, but keep in mind that CSS precedence will follow the standard
 * cascading order, meaning styles declared later in the document or manifest will override earlier ones,
 * depending on specificity.
 *
 * Consider organizing styles into separate files for maintainability.
 */

body {
  background: url("/assets/backgrounds/nebula-237ffbef.webp") center/cover fixed;

  header {
    position: sticky;
    top: 0;
    z-index: 10;
  }

  main {
    flex-grow: 1;

    .content-block {
      backdrop-filter: blur(8px);
      background-color: color-mix(in srgb, var(--wa-color-surface-default) 80%, transparent);
      background-image: var(--background-image);
      background-position: center;
      background-size: cover;
      border-radius: var(--wa-border-radius-l);
      padding: var(--wa-space-l);
    }
  }

  footer {
    background-color: var(--wa-color-surface-raised);
    bottom: 0;
    box-shadow: var(--wa-shadow-m);
    position: sticky;
  }
}
