body {
  background-image: url(https://static.vecteezy.com/system/resources/previews/008/426/215/non_2x/beautiful-meteor-shower-in-the-dark-sky-background-free-vector.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  height: 90vh;
  overflow-x: hidden;
  margin: 0;
  padding: 0;
  width: 100vw;
}

.title {
  color: rgb(255, 255, 255);
  position: relative;
  text-align: center;
  top: 1%;
  font-size: 600%;
  user-select: none;
}

.price_per_item {
  background-color: rgb(251, 214, 214);
  border: solid;
  border-color: azure;
  position: absolute;
  left: 5%;
  top: 25%;
  font-size: 200%;
  border-radius: 5px;
  width: 21%;
  height: 16%;
  margin-left: 2.3%;
  margin-top: 1%;
  margin-bottom: 2%;
  margin-right: 2%;
  transition: opacity 0.2s;
  display: inline;
}

.price_per_item:hover {
  opacity: 0.84;
}
.price_per_item:active {
  opacity: 0.7;
}

.sales_tax_calculator {
  background-color: rgb(207, 244, 244);
  border: solid;
  border-color: azure;
  position: absolute;
  left: 37.5%;
  top: 25%;
  font-size: 240%;
  border-radius: 5px;
  width: 21%;
  height: 16%;
  margin-left: 40px;
  margin-top: 1%;
  margin-bottom: 2%;
  margin-right: 2%;
  transition: opacity 0.2s;
  display: inline;
}

.sales_tax_calculator:hover {
  opacity: 0.84;
}
.sales_tax_calculator:active {
  opacity: 0.7;
}

.simp_comp_interest_calculator {
  display: inline;
  background-color: rgb(195, 247, 205);
  border: solid;
  border-color: azure;
  position: absolute;
  left: 70%;
  top: 25%;
  font-size: 200%;
  border-radius: 5px;
  width: 21%;
  height: 16%;
  margin-left: 40px;
  margin-top: 1%;
  margin-bottom: 2%;
  margin-right: 2%;
  transition: opacity 0.2s;
  display: inline;
}

.simp_comp_interest_calculator:hover {
  opacity: 0.84;
}
.simp_comp_interest_calculator:active {
  opacity: 0.7;
}


.ratio {
  background-color: rgb(249, 248, 196);
  border: solid;
  border-color: azure;
  position: absolute;
  left: 5%;
  top: 61%;
  font-size: 40px;
  border-radius: 5px;
  width: 21%;
  height: 16%;
  margin-left: 2.3%;
  margin-top: 1%;
  margin-bottom: 2%;
  margin-right: 2%;
  transition: opacity 0.2s;
  display: inline;
}

.ratio:hover {
  opacity: 0.84;
}
.ratio:active {
  opacity: 0.7;
}

.discount_calculator {
  background-color: rgb(188, 185, 223);
  border: solid;
  border-color: azure;
  position: absolute;
  left: 37.5%;
  top: 61%;
  font-size: 40px;
  border-radius: 5px;
  width: 21%;
  height: 16%;
  margin-left: 2.3%;
  margin-top: 1%;
  margin-bottom: 2%;
  margin-right: 2%;
  transition: opacity 0.2s;
  display: inline;
}

.discount_calculator:hover {
  opacity: 0.84;
}
.discount_calculator:active {
  opacity: 0.7;
}

.appreciation {
  background-color: rgb(185, 224, 179);
  border: solid;
  border-color: azure;
  position: absolute;
  left: 70%;
  top: 61%;
  font-size: 200%;
  border-radius: 5px;
  width: 21%;
  height: 16%;
  margin-left: 2.3%;
  margin-top: 1%;
  margin-bottom: 2%;
  margin-right: 2%;
  transition: opacity 0.2s;
  display: inline;
}

.appreciation:hover {
  opacity: 0.84;
}
.appreciation:active {
  opacity: 0.7;
}


.github {
  --black-700: hsla(0 0% 12% / 1);
  --border_radius: 9999px;
  --transtion: 0.3s ease-in-out;
  --offset: 2px;

  cursor: pointer;
  position: absolute;
  top: 87%;
  left: 86%;
  display: flex;
  align-items: center;
  gap: 0.5rem;

  transform-origin: center;

  padding: 1rem 2rem;
  background-color: transparent;

  border: none;
  border-radius: var(--border_radius);
  transform: scale(calc(1 + (var(--active, 0) * 0.1)));

  transition: transform var(--transtion);
}

.github::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);

  width: 100%;
  height: 100%;
  background-color: var(--black-700);

  border-radius: var(--border_radius);
  box-shadow: inset 0 0.5px hsl(0, 0%, 100%), inset 0 -1px 2px 0 hsl(0, 0%, 0%),
    0px 4px 10px -4px hsla(0 0% 0% / calc(1 - var(--active, 0))),
    0 0 0 calc(var(--active, 0) * 0.375rem) hsl(260 97% 50% / 0.75);

  transition: all var(--transtion);
  z-index: 0;
}

.github::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);

  width: 100%;
  height: 100%;
  background-color: hsla(260 97% 61% / 0.75);
  background-image: radial-gradient(
      at 51% 89%,
      hsla(266, 45%, 74%, 1) 0px,
      transparent 50%
    ),
    radial-gradient(at 100% 100%, hsla(266, 36%, 60%, 1) 0px, transparent 50%),
    radial-gradient(at 22% 91%, hsla(266, 36%, 60%, 1) 0px, transparent 50%);
  background-position: top;

  opacity: var(--active, 0);
  border-radius: var(--border_radius);
  transition: opacity var(--transtion);
  z-index: 2;
}

.github:is(:hover, :focus-visible) {
  --active: 1;
}
.github:active {
  transform: scale(1);
}

.github .dots_border {
  --size_border: calc(100% + 2px);

  overflow: hidden;

  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);

  width: var(--size_border);
  height: var(--size_border);
  background-color: transparent;

  border-radius: var(--border_radius);
  z-index: -10;
}

.github .dots_border::before {
  content: "";
  position: absolute;
  top: 30%;
  left: 50%;
  transform: translate(-50%, -50%);
  transform-origin: left;
  transform: rotate(0deg);

  width: 100%;
  height: 2rem;
  background-color: white;

  mask: linear-gradient(transparent 0%, white 120%);
  animation: rotate 2s linear infinite;
}

@keyframes rotate {
  to {
    transform: rotate(360deg);
  }
}

.github .sparkle {
  position: relative;
  z-index: 10;

  width: 1.75rem;
}

.github .sparkle .path {
  fill: currentColor;
  stroke: currentColor;

  transform-origin: center;

  color: hsl(0, 0%, 100%);
}

.github:is(:hover, :focus) .sparkle .path {
  animation: path 1.5s linear 0.5s infinite;
}

.github .sparkle .path:nth-child(1) {
  --scale_path_1: 1.2;
}
.github .sparkle .path:nth-child(2) {
  --scale_path_2: 1.2;
}
.github .sparkle .path:nth-child(3) {
  --scale_path_3: 1.2;
}

@keyframes path {
  0%,
  34%,
  71%,
  100% {
    transform: scale(1);
  }
  17% {
    transform: scale(var(--scale_path_1, 1));
  }
  49% {
    transform: scale(var(--scale_path_2, 1));
  }
  83% {
    transform: scale(var(--scale_path_3, 1));
  }
}

.github .text_button {
  position: relative;
  z-index: 10;

  background-image: linear-gradient(
    90deg,
    hsla(0 0% 100% / 1) 0%,
    hsla(0 0% 100% / var(--active, 0)) 120%
  );
  background-clip: text;

  font-size: 1rem;
  color: transparent;
}


.loader {
  position: absolute;
  left: 86.5%;
  top: 7%;
  width: 120px;
  height: 90px;
  margin: 0 auto;
  z-index: 999;
}
.load {
  position: absolute;
  left: 85.97%;
  top: 17%;
  z-index: 999;
}

.load:before {
  content: "";
  position: absolute;
  bottom: 30px;
  left: 50px;
  height: 30px;
  width: 30px;
  border-radius: 50%;
  background: #2a9d8f;
  animation: loading-bounce 0.5s ease-in-out infinite alternate;
}

.loader:after {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  height: 7px;
  width: 45px;
  border-radius: 4px;
  box-shadow: 0 5px 0 #f2f2f2, -35px 50px 0 #f2f2f2, -70px 95px 0 #f2f2f2;
  animation: loading-step 1s ease-in-out infinite;
}

@keyframes loading-bounce {
  0% {
    transform: scale(1, 0.7);
  }

  40% {
    transform: scale(0.8, 1.2);
  }

  60% {
    transform: scale(1, 1);
  }

  100% {
    bottom: 140px;
  }
}

@keyframes loading-step {
  0% {
    box-shadow: 0 10px 0 rgba(0, 0, 0, 0),
            0 10px 0 #f2f2f2,
            -35px 50px 0 #f2f2f2,
            -70px 90px 0 #f2f2f2;
  }

  100% {
    box-shadow: 0 10px 0 #f2f2f2,
            -35px 50px 0 #f2f2f2,
            -70px 90px 0 #f2f2f2,
            -70px 90px 0 rgba(0, 0, 0, 0);
  }
}

























.text {
  text-wrap: balance;
  text-align: center;
  margin-left: 0%;
  margin-right: 0%;
  position: relative;
  top: 1%;
}


.gradient {
  -webkit-text-fill-color: transparent;
  -webkit-background-clip: text;
  -webkit-animation: textShine 1s ease-in-out infinite alternate;
  animation: textShine 1s ease-in-out infinite alternate;
  background: -webkit-radial-gradient(circle, #189fd1 0%, #62f873 100%);
  background: radial-gradient(circle, #189fd1 0%, #62f873 100%);
  background-clip: text;
  background-size: 200%;
  position: relative;
  font-size: 300%;
  user-select: none;
  margin: none;
}

@keyframes textShine {
  0% {
    background-position: 0% 50%;
  }
  100% {
    background-position: 100% 50%;
  }
}

.special{
  position: absolute;
  left: 82%;
  top: 10%;
  transform: translate(-50%, -50%);
  font-size: 100%;
  color: #fff;
  text-align: center;
  font-family: 'Courier New', Courier, monospace;
  user-select: none;
}
.special1{
  position: absolute;
  left: 82%;
  top: 13%;
  transform: translate(-50%, -50%);
  font-size: 100%;
  color: #fff;
  text-align: center;
  font-family: 'Courier New', Courier, monospace;
  user-select: none;
}