html,
body {
  width: 100%;
  height: 100%;
  margin: 0;
  overflow: hidden;
  cursor: url("../images/Cursor/Cursor_2.png"), auto;
  background: linear-gradient(180deg, rgb(255, 229, 239) 0%, rgb(255, 255, 255) 100%);
}

body {
  position: relative;
  display: flex;
  flex-direction: column;
  background: transparent;
}

img {
  user-select: none;
  -webkit-user-drag: none;
}

img:hover {
  cursor: url("../images/Cursor/Cursor_1.png"), auto;
}

p,
h1 {
  margin: 0;
  font-family: Cousine, monospace;
  color: #000;
}

button {
  font: inherit;
}

.studio-sign {
  width: min(22vw, 220px);
  height: auto;
  z-index: 20;
  pointer-events: none;
}

.studio-sign-fixed {
  position: fixed;
  left: 20px;
  bottom: 20px;
}
.storefront-stage {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.storefront-main-text p{
  font-size: min(4vw, 40px);
  font-weight: 700;
  line-height: 1.1;
}
.storefront-main-text h1 {
  font-size: min(6vw, 60px);
  font-weight: 700;
  line-height: 1.1;
}
.storefront-subtext {
  font-size: min(4vw, 20px);
  font-weight: 400;
  line-height: 1.1;
}
.back {
  position: absolute;
  background: black;
  color: white;
  font-family: 'Cousine', monospace;
  border: black solid 1px;
  border-radius: 20px;
  text-decoration: none;
  padding: 4px 8px;
  margin-top: 40px;
}
.back:hover {
  background: #e87ba8;
  transform: translateY(-1px);
  box-shadow: 0 12px 22px rgba(221, 108, 158, 0.18);
}
@media (max-width: 900px) {
  .storefront-stage {
    margin: 20px;
  }
}


