html, body, #main {
  width: 100%;
  height: 100%;
}

body {
  color: white;
  background: black;
}

#backgroundimg {
  position: fixed;
  min-width: 100%;
  min-height: 100%;
  height: auto;
  z-index: -3;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  /*opacity: 0;*/
}

#shadow, #shadow2 {
  position: fixed;
  width: 100%;
  height: 100%;
}
#shadow {
  background-image: linear-gradient(rgba(47, 31, 62, .93), rgba(107, 85, 91, 0.96), rgba(30, 16, 39, .88));
  z-index: -2;
}
#shadow2 {
  background-image:
    linear-gradient(0.02turn, rgba(0, 0, 0, .9), rgba(0, 0, 0, 0) 30%),
    linear-gradient(0.52turn, rgba(0, 0, 0, .3), rgba(0, 0, 0, 0) 15%),
    linear-gradient(0.49turn, rgba(0, 0, 0, .3), rgba(0, 0, 0, 0) 8%);
  z-index: -1;
}

#storeinfo {
  position: absolute;
  left: 45%;
  top: 35%;
  transform: translate(-50%, -50%);
  width: 900px;
  display: flex;
}

#storename {
  font-family: 'FerrumExtracondensed';
  font-size: 400%;
  pointer-events: none;
  text-shadow: 2px 2px #000000, 0 0 50px #000000, 0 0 10px #000000;
  margin-top: 50px;
  margin-left: 30px;
  white-space: nowrap;
}

#flavor {
  width: 100%;
  text-align: center;
  font-size: 120%;
  pointer-events: none;
  text-shadow: 2px 2px #000000, 0 0 50px #000000, 0 0 10px #000000;
  margin-top: 5px;
  margin-left: 10px;

}

#links {
  text-align: center;
  font-size: small;
  position: fixed;
  right: 10px;
  bottom: 5px;
}
#links a {
  color: rgba(255, 255, 255, 0.32);
}

.title {
  font-family: 'FerrumExtracondensed';
  color: #eeeeee;
  font-size: 180%;
}

.description {
  font-size: 120%;
  color: #b7b7b7;
  margin-right: 50px;
}

.shippinginfo {
  font-size: 90%;
  color: #888888;
  margin-right: 50px;
}

#products {
  position: absolute;
  left: 35%;
  top: 40%;
  right: 0;
  bottom: 0;
}

#notacceptingorders {
  text-align: center;
  color: #dddddd;
  background: rgba(0,0,0,0.501);
  padding: 5px 30px 5px 30px;
  border: 7px black solid;
  position: absolute;
  top: 40%;
  left: 51%;
  transform: translateX(-50%);
}
#notacceptingorders > .big {
  font-size: 150%;
}
#notacceptingorders > .contact {
  color: darkgray;
  font-weight: bold;
}
#notacceptingorders > .contactinfo, #notacceptingorders > .contactinfo > a {
  font-size: small;
  color: darkgray;
}
#notacceptingorders > span {
  display: block;
}

.product {
  --background-color: rgb(18, 12, 25);
  --image_width: 200px;
  position: absolute;
  left: 0;
  right: 0;
  height: var(--image_width);
  background: linear-gradient(var(--background-color) 35%,
                              rgba(0, 0, 0, 0) 85%);
  border-radius: calc(var(--image_width)/2) 0 0 calc(var(--image_width)/2);
  cursor: pointer;
}

.product:hover {
  --background-color: rgb(32, 21, 45);
}

.product * {
  pointer-events: none;
  -webkit-user-select: none; /* Safari */        
  -moz-user-select: none; /* Firefox */
  -ms-user-select: none; /* IE10+/Edge */
}

.product > img {
  position: absolute;
  width: var(--image_width);
  height: var(--image_width);
  border-radius: 50%;
  top: 50%;
  transform: translateY(-50%);
  box-shadow: 0 0 0 10px var(--background-color);
}

.product > .text {
  margin-left: calc(var(--image_width) + 25px);
  text-shadow: 2px 2px 3px #000000;
}

.startingat {
  /*font-family: 'FerrumExtracondensed';*/
  color: #eeeeee;
  position: absolute;
  top: 5px;
  right: 30px;
  font-size: 140%;
}

#policiesmodal {
  color: black;
}
#policiesmodal .content {
  white-space: pre-line;
}
