* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  height: 100%;
}

.bg {
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  background-image: url(./img/aether.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  font-family: "Gill Sans", sans-serif;
  background-color: black;
}

.hero {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(16px, 5vw, 48px);
  background-color: #00000070;
}

.banner {
    width: 250%;
    max-width: 909px;
    height: auto;
    display: block;
    position: fixed;
}

.stores {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: clamp(12px, 3vw, 24px);
  padding: clamp(16px, 4vw, 32px) 16px calc(clamp(16px, 4vw, 32px) + env(safe-area-inset-bottom));
}

.store {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 12px 22px;
  border-radius: 12px;
  color: #ffffff;
  text-decoration: none;
  height: 100%;
}

.store img {
  height: 48px;
  width: auto;
  display: block;
}

.texthero {
    color: white;
    background-color: #00000069;
    border-radius: 5%;
    padding: 22px;
}

#eshop img {
  height: 48px;
}

@media (max-width: 480px) {
  .stores {
    flex-direction: row;
  }

  .store {
    justify-content: center;
  }
}

header div {
    padding: 20px;
    font-size: 23px;
}

header div a {
    color: #ffffff96;
}

header div a:hover {
    color: white;
}

header {
    position: absolute;
    display: flex;
    align-self: anchor-center;
}