html,
body {
  margin: 0;
  padding: 0;
  height: 100%;
  overflow-x: hidden;
  cursor: pointer;
}

.main {
  min-height: 1300vh;
  background: url("./../img/bg-desktop.png") no-repeat top;
  background-size: cover;
}

@media (max-width: 600px) {
  .main {
    min-height: 1200vh;
    background: url("./../img/bg-mob.png") no-repeat top;
    background-size: contain;
  }
}

.modal {
  display: none;
  position: fixed;
  inset: 0;
  background-color: #00000044;
  padding: 5px;
}

.modal-inner {
  max-width: 450px;
  margin: 0 auto;
  position: relative;
  background-color: #fff;
  border-radius: 16px;
  transform: translate(0, -50%);
  top: 50%;
  padding: 10px;
}

#close {
  position: relative;
  top: 0px;
  left: calc(100% - 24px);
  font-size: 24px;
  background: transparent;
  cursor: pointer;
  border: none;
}
