body {
  margin: 0;
  padding: 0;
  height: 100vh;
  width: 100vw;
  overflow: hidden;
}

.loading-background {
  position: fixed;
  border-color: #201f1f;
  border-style: solid;
  border-width: 100vh 100vw;
  top: -50%;
  left: -50%;
  z-index: 99;
  width: 0%;
  height: 0%;
}

.loading-indicator {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  pointer-events: none;
  z-index: 999;
}

.loader-container {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
}

.loader {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  width: 100%;
  height: 100%;
  margin-left: 20px;
}

.loading-logo {
  width: 100px;
  opacity: 0.3;
  transform-origin: "center center";
  transform: scale(0.25);
}

.loader-progress {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  width: 0;
  max-width: 200px;
  height: 4px;
  opacity: 0.3;
  border-radius: 12px;
  background-color: rgb(80, 80, 80);
  transform-origin: "center center";
  margin-bottom: 4px;
}

.loader-progress-bar {
  width: 0%;
  height: 5px;
  border-radius: 12px;
  background-color: #fff;
  transition: width 0.75s ease;
}

.counter-container {
  align-self: end;
  display: flex;
  justify-content: end;
  align-items: center;
  font-family: sans-serif;
  font-size: clamp(0.8rem, 1.4vw, 1.6rem);
  font-weight: 500;
  width: 100%;
  min-width: 26px;
  line-height: 1;
  gap: 1px;
  opacity: 0;
  transform: translateY(8px);
  color: rgb(132, 129, 129);
}

.website-content {
  display: grid;
  place-content: center;
  width: 100%;
  height: 100%;
  background-color: #fff;
}

h1 {
  width: 100%;
  height: 100%;
  display: flex;
  gap: 16px;
  text-align: center;
  font-weight: 400;
  text-transform: uppercase;
  color: #000;
}

h1 span {
  font-size: clamp(20px, 8vw, 50px);
}

@media (min-width: 450px) and (max-width: 1000px) {
  .loading-background {
    border-width: 150vh 100vw;
    top: -150%;
    left: -50%;
  }
}

@media (min-width: 1025px) {
  .loading-background {
    border-width: 200vh 100vw;
    top: -150%;
    left: -50%;
  }

  .counter-container {
    min-width: 30px;
    font-size: clamp(0.8rem, 1.15vw, 1.6rem);
  }

  .loader-progress {
    margin-bottom: 6px;
  }

  .loader-container {
    gap: 10px;
  }
}
