*,
*::before,
*::after {
  box-sizing: border-box;
}

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

body {
  position: relative;
  background-color: #1a0a24;
}

/* Click anywhere to go to landing page */
.home-link {
  position: fixed;
  inset: 0;
  z-index: 10;
  cursor: pointer;
  display: block;
  width: 100%;
  height: 100%;
}

.home-link-inner {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  font-size: 0;
  color: transparent;
  overflow: hidden;
}

.carwash-bg {
  position: fixed;
  inset: 0;
  z-index: -1;
  background-image: url("assets/car-wash-side.png");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  opacity: 0.35;
}

.bg {
  position: fixed;
  inset: 0;
  background-image: url("assets/grand-opening.png");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
  background-color: transparent;
  z-index: 0;
}
