
h1 {
  font-size: 50px;
  color:bisque;
  text-align: center;
  -webkit-text-stroke: 1px #cf8356;
  }

body {
     background-image: 
    url('https://files.catbox.moe/6bery2.png');

  background-attachment: fixed;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  }

.bg-fixed {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  object-fit: cover;
  z-index: -1;
}

.center-gif {
  position: fixed;
  top: 80%;
  left: 50%;
  transform: translate(-50%, -50%); /* точно по центру */
  width: 500px;   /* или другой нужный размер */
  height: auto;   /* чтобы не искажалась */
  z-index: 10;    /* чтобы была поверх фона */
  pointer-events: none; /* чтобы не мешала кликам по кнопкам */
}

.side-gif-right {
  position: fixed;
  top: 81%;
  right: 0;
  transform: translateY(-50%);
  width: 450px;
  height: auto;
  z-index: 10;
  pointer-events: none;
}