@import url("https://fonts.googleapis.com/css2?family=Baumans&family=Bebas+Neue&display=swap");
#root {
  background-color: #02020b;
  --backGroundColour: #02020b;
  --black: #02020b;
  --white: #e5d4ed;
  --red: #5E0B15;
  --yellow: #F4E04D;
  --blue: #5941A9;
  --height: 57vh;
  --side: 300px;
  --widthArray: calc(var(--side) + var(--side));
  --blueshadow: 4px 4px 1px 1px var(--blue);
  position: relative;
  overflow-x: hidden;
}
* {
  font-family: Bebas Neue;
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
.cursour_pointer {
  background-color: #e5d4ed;
  border-radius: 50%;
  height: 10px;
  width: 10px;
  position: fixed;
}
.horizontal-line {
  width: 100%;
  height: 3px;
  background-color: var(--white);
  border-radius: 1.5px;
}
.line::before {
  content: "";
  background-repeat: repeat-x;
  height: 60px;
  width: 100%;
  background-size: contain;
  background-image: url('../assets/curve_line.svg');
  position: absolute;
  top: 0px;
  left: 0px;
}
.line2::before {
  content: "";
  background-repeat: repeat-x;
  height: 60px;
  width: 100%;
  background-size: contain;
  background-image: url('../assets/curve_line1.svg');
  position: absolute;
  top: 0px;
  left: 0px;
}
.line3::after {
  content: "";
  background-repeat: repeat-x;
  height: 60px;
  width: 100%;
  background-size: contain;
  background-image: url('../assets/curve_line2.svg');
  position: absolute;
  top: 0px;
  left: 0px;
}
.line4::after {
  content: "";
  background-repeat: repeat-x;
  height: 60px;
  width: 100%;
  background-size: contain;
  background-image: url('../assets/curve_line3.svg');
  position: absolute;
  top: 0px;
  left: 0px;
}
.line5::after {
  content: "";
  background-repeat: repeat-x;
  height: 60px;
  width: 100%;
  background-size: contain;
  background-image: url('../assets/curve_line4.svg');
  position: absolute;
  top: 0px;
  left: 0px;
}

h1 {
  font-size: 6rem;
  z-index: 1;
  text-shadow: 2px 4px 4px rgba(0, 0, 0, 0.6);
}
h2 {
  font-size: 3rem;
  font-family: "Baumans", system-ui;
  z-index: 1;
}
h3 {
  font-size: 2.5rem;
  z-index: 1;
  text-shadow: 2px 4px 4px rgba(0, 0, 0, 0.6);
}
h4 {
  font-family: "Baumans", system-ui;
  font-size: 1.5rem;
  z-index: 1;
  text-shadow: 2px 4px 4px rgba(0, 0, 0, 0.6);
}
p {
  font-family: "Baumans", system-ui;
}
.custom-container {
  border-radius: 3rem;
  padding: 1rem;
  position: relative;
  z-index: 2;
  cursor: none;
  height: 100%;
}
.prloader{
  background-color: var(--backGroundColour);
  height: 100vh;
  width: 100vw;
  position: fixed;
  flex-direction: column;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
}
.prloader > img{
  width: 15%;
}
.prloader > h1{
  color: #e5d4ed;
  font-size: 3rem;
  position: relative;
  bottom: -3rem;
}
.prloader-button{
  background-color: var(--white);
  border: 2px solid var(--red);
  height: 3rem;
  width: 6rem;
  border-radius: 1.5rem;
  font-size: 1.5rem;
  position: relative;
  opacity: 0;
  box-shadow: var(--blueshadow);
}
.prloader-button:hover{
  background-color: var(--backGroundColour);
  color: var(--white);
  transition: all 0.3s ease-in-out;
}
.music{
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #02020b;
  height: 4rem;
  width: 4rem;
  border: 5px solid #F4E04D;
  object-fit: contain;
  position: fixed;
  top: 1rem;
  right: 1rem;
  cursor: pointer;
  z-index: 8;
}
.button{
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid black;
  height: 3rem;
  width: 6rem;
  border-radius: 1.5rem;
  font-size: 1.2rem;
  padding-top: 3px;
  background-color: #e5d4ed37;
  color: var(--white);
}
.button:hover{
  background-color: var(--yellow);
  color: var(--black);
  transition: all 0.5s ease-in-out;
}
/* For WebKit browsers (Chrome, Safari) */
::-webkit-scrollbar {
  width: 5px;
  height: 5px;
}

::-webkit-scrollbar-track {
  background: var(--black);
}

::-webkit-scrollbar-thumb {
  background: var(--yellow);
  border-radius: 2.5px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--red);
}

/* For Firefox */
* {
  scrollbar-width: thin;
  scrollbar-color: var(--yellow) var(--black);
}

* {
  scrollbar-gutter: stable;
}

/* For Internet Explorer/Edge */
body {
  -ms-overflow-style: scrollbar;
}

body::-ms-scrollbar {
  width: 5px;
  height: 5px;
}

body::-ms-scrollbar-track {
  background: var(--black);
}

body::-ms-scrollbar-thumb {
  background: var(--yellow);
  border-radius: 2.5px;
}

body::-ms-scrollbar-thumb:hover {
  background: var(--red);
}

.scrolltotop{
  height: 4rem;
  width: 4rem;
  border-radius: 50%;
  background-color: #02020b;
  position: fixed;
  bottom: 1rem;
  right: 1rem;
  content: "";
  z-index: 9;
  background-image: url("../assets/alt-arrow-up-svgrepo-com.svg");
  padding: 1rem;
  background-position: center center;
  background-size: 2rem;
  background-repeat: no-repeat;
  border: 1px solid white;
  box-shadow: 2px 4px 4px rgba(0, 0, 0, 0.6);
}