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

img {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

#mint-container {
  font-family:monospace;
  background-color: rgba(0,0,0,0.9);
  z-index: 2;
  position: absolute;
  top: 8%;
  left: 8%;
  padding: 24px;
  min-width: 360px;
  border-radius: 32px;
  border-style: solid;
  border-color: white;
}

#mint-description {
  color: lime;
  text-align: center;
  font-size: 24px;
  padding: 24px;
}

#mint-details {
  color: lime;
  text-align: center;
  font-size: 24px;
  padding: 4px;
}

#mint-amount-container {
  margin-left: 10%;
  width: 80%;
  margin-top: 8px;
  margin-bottom: 8px;
}

#mint-amount {
  width: 100%;
  -webkit-appearance: none;
  appearance: none;
  height: 8px;
  outline: none;
  background: rgba(0,32,0,1);
}

#mint-amount::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 16px;
  height: 16px;
  background: lime;
  cursor: pointer;
}

#mint-amount::-moz-range-thumb {
  width: 16px;
  height: 16px;
  background: lime;
  cursor: pointer;
}

#mint-button-container {
  margin-left: 10%;
  width: 80%;
  align-content: center;
}

#mint-button {
  font-family:monospace;
  width: 100%;
  font-size: 24px;
  color: lime;
  background-color: black;
  cursor: pointer;
}

.link {
  background-color: black;
  z-index: 1;
  position: absolute;
  width: 100%;
  height: 100%;
}
