@import url("https://fonts.googleapis.com/css2?family=Rubik:ital,wght@0,300..900;1,300..900&display=swap");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  border: none;
  outline: none;
  user-select: none;
}

html {
  font-size: 62.5%;
  scroll-behavior: smooth;
}

::-webkit-scrollbar {
  width: 6px;
}

::-webkit-scrollbar-track {
  background-color: transparent;
}

::-webkit-scrollbar-thumb {
  background-color: orange;
  border-radius: 5px;
}

body {
  overflow: hidden;
  cursor: url("../cursor.png") 0 0, auto;
  font-family: "Rubik", sans-serif;
  transition: all 5s ease;
  animation: bg-color1 20s ease-in-out infinite;
}

@keyframes bg-color {
  0% {
    background-color: hsl(0, 0%, 9%);
  }
  10% {
    background-color: hsl(0, 0%, 10%);
  }
  20% {
    background-color: hsl(0, 0%, 8%);
  }
  100% {
    background-color: hsl(0, 0%, 8%);
  }
}

.locomotive {
  overflow: hidden;
}

[data-scroll-container] {
  min-height: 100vh;
}

.overflow {
  overflow-x: hidden !important;
  overflow-y: auto !important;
}

.trail {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100vh;
  width: 100vw;
  opacity: 0.8;
  position: absolute;
  height: 3rem;
  width: 3rem;
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  animation: scale 0.3s ease-in-out;
  scale: 0;
}

@keyframes scale {
  0% {
    scale: 2;
  }
}

.main-btn {
  margin-top: 4rem;
  border-radius: 20rem;
  padding: 1.4rem 2.6rem;
  box-shadow: 2px 2px 4px rgba(221, 221, 221, 0.59),
    -2px -2px 4px rgba(255, 255, 255, 0.689);
  transition: all 0.3s ease;
  background-color: rgba(0, 0, 0, 0.555);
  text-transform: uppercase;
  text-decoration: none;
  color: rgba(255, 255, 255, 0.689);
  font-weight: 900;
  font-size: 1.4rem;
  cursor: url("../pointer.png") 0 0, auto;
  overflow: hidden;
}
.main-btn:hover {
  background-color: rgba(0, 0, 0, 0.404);
  scale: 1.1;
}

.main-btn:active {
  scale: 1;
}

.main-heading {
  text-align: center;
}

.main-heading h3 {
  color: orange;
  text-transform: uppercase;
  font-size: 2rem;
  font-weight: 700;
  padding-top: 2rem;
}

.main-heading h1 {
  color: #999;
  font-size: 4.8rem;
  font-weight: 600;
  text-transform: capitalize;
}
