body {
  margin: 0;
  font-family: "Inter", sans-serif;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100vh;
  background-color: black;
}




.lesta {
  position: relative;
  max-width: 1176px;

  display: flex;
  justify-content: center;
  align-items: center;

  /* display: flex;
    flex-direction: column;
    background-image: url('./gif.gif');
    background-repeat: no-repeat;
    background-position: center; */
    
}


@media (max-height: 900px) {
  .auchan {
    height: 100vh;
  }
}

.lesta__gif {
  width: 100%;
  object-fit: contain;
  height: 100%;
}

.err-modal {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(0, 0, 0, 0.5);
  visibility: hidden;
  opacity: 0;
  transition: 0.2s;
}

.err-modal-visible {
  visibility: visible;
  opacity: 1;
}

.err-modal__container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-color: #fff;
  border-radius: 8px;
  padding: 20px;
  box-sizing: border-box;
  max-width: 320px;
  text-align: center;
}

.err-modal__container > h3 {
  margin: 20px 0 10px;
  font-size: 20px;
}
.err-modal__container > span {
  color: rgba(0, 0, 0, 0.7);
}
