#topsection {
  height: 100svh;
}

[type=button]:not(:disabled), [type=reset]:not(:disabled), [type=submit]:not(:disabled), button:not(:disabled) {
  cursor: url(../../assets/img/star-4pt-round.svg) 12 12, auto;
}

#topsection h1 {
  color: var(--bs-primary-bg-subtle);
  transition: color 0.5s ease-in, transform 0.5s ease-in;
  z-index: 999;
  text-shadow: 0px 0px 10px var(--bs-primary-text-emphasis);
}

#topsection h1.visible {
  color: rgb(0, 0, 0);
  transform: scale(1.5);
  z-index: 999;
  text-shadow: 0px 0px 10px rgb(114, 203, 164);
}

#topsection p {
  color: var(--bs-primary-bg-subtle);
  transition: color 0.5s ease-in, transform 0.5s ease-in;
  z-index: 998;
  max-width: 100%;
  text-shadow: 0px 0px 10px var(--bs-primary-text-emphasis);
}

#topsection p.visible {
  color: rgb(5, 4, 4);
  transform: scale(1.5);
  z-index: 999;
  max-width: 100%;
  overflow: hidden;
  text-shadow: 0px 0px 10px rgb(67, 217, 152);
}

#details-section {
  overflow: hidden;
  min-height: 125svh;
}

#details-section li {
  margin-top: 3px;
  font-size: 2vh;
}

#details-section .h1 {
  text-align: center;
}

#kit-details .col {
  border: 2px solid rgba(92, 87, 84, 0.308);
  border-radius: 22px;
  margin: 1px;
  min-height: 50vh;
  background-color: rgba(179, 255, 247, 0.04);
}

#icon-stars {
  width: 8rem;
  fill: rgba(255, 255, 255, 0.357);
  transition: transform 1s ease;
  z-index: 1;
}

#icon-bottle {
  width: 10rem;
  transition: transform 1s ease;
}

#icon-bottle:hover {
  transform: rotate(40deg);
  fill: rgb(0, 0, 0);
}

#icon-stars:hover {
  transform: rotate(-40deg);
  fill: pink;
}

#details-section:hover #icon-stars {
  transform: rotate(-40deg);
  fill: rgb(124, 235, 164);
  transition: transform 1s ease, fill 1s ease;
}

#details-section:hover #icon-bottle {
  transform: rotate(40deg);
  fill: rgb(1, 1, 1);
  transition: transform 1s ease, fill 1s ease;
}

#details-section:hover #icon-bottle #icon-sub-star {
  fill: rgb(226, 9, 114);
  transition: transform 1s ease, fill 1s ease;
}

#details-section-1 {
  overflow: hidden;
  min-height: 100svh;
  color: white;
}

#details-section-2 {
  overflow: hidden;
  min-height: 100svh;
  color: white;
}

.btn:hover {
  color: var(--bs-btn-hover-color);
  background-color: var(--bs-btn-hover-bg);
  border-color: var(--bs-btn-hover-border-color);
  cursor: url(../../assets/img/star-4pt-round.svg) 12 12, auto;
}

