body {
  margin: 0;
  padding: 0;
  background: white;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: #abb;
  min-height: 100vh;
  font-weight: bolder;
  font-family: "Nebuu-Bold";
  animation: fadein 1s;
}

h1 h2 h3 h4 h5 {
  color: #e86c5f;
}

.container {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 2rem;
}

.logo {
  width: 300px;
  max-width: 80vw;
  height: auto;
}

.huge {
  font-size: 4rem;
}

.buttons {
  margin-top: 2rem;
  display: flex;
  gap: 2.5rem;
  flex-wrap: wrap;
  justify-content: center;
}

.store-button {
  width: 160px;
  height: 48px;
}

.cs-wrapper {
  position: relative;
}

.coming-soon {
  position: absolute;
  width:100%;
  height: 100%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: rgba(255, 255, 255, 0.48);
  border-radius: 4px;
  pointer-events: none;
  font-size: 18px;
  color: #e86c5f;
  text-shadow: -1px -1px 0 #eee, 1px -1px 0 #eee, -1px 1px 0 #eee, 1px 1px 0 #eee;
}

a {
  text-decoration: none;
}

@media (max-width: 600px) {
  .logo {
    width: 180px;
  }

  .buttons {
    flex-direction: column;
    gap: 1rem;
  }

  .store-button {
    width: 200px;
    height: 60px;
  }
}
