/*
 * 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 {
  user-select: none;
  -webkit-touch-callout: none; /* iOS Safari */
  -webkit-tap-highlight-color: transparent;

  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  margin: 0;
}

.flappy {
  background-image: url("/assets/flappy-background-be23ec23.png");
  width: 420px;
  height: 640px;
  margin: auto;

  position: relative;
  overflow: hidden;

  .bird {
    z-index: 1;
    background-image: url("/assets/flappy-bird-a4a29be5.webp");
    position: absolute;
    background-size: contain;
  }

  .pipe {
    z-index: 5;
    background-image: url("/assets/flappy-pipe-3ef9f647.png");
    position: absolute;
    background-size: contain;
  }
}
