@import url("https://fonts.googleapis.com/css2?family=Roboto+Mono:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;1,100;1,200;1,300;1,400;1,500;1,600;1,700&display=swap");

* {
  margin: 0px;
  padding: 0px;
  cursor: none;
}

body {
  margin: 0;
  padding: 0;
  font-family: "Roboto", sans-serif;
  overflow: hidden;
  background: #111111;
  transition: all 0.2s ease-in;
  position: relative;
}

.white {
  background-color: #EEEADE;
  transition: all 0.2s ease-in;
}

.context {
  width: 100%;
  position: absolute;
  top: 50vh;
}

.context h1 {
  text-align: center;
  color: #fff;
  font-size: 50px;
}

.area {
  background: -webkit-linear-gradient(to left, #8f94fb, #4e54c8);
  width: 100%;
  height: 100vh;
  display: flex;
}


@keyframes animate {
  0% {
    transform: translateY(0) rotate(0deg);
    opacity: 1;
    border-radius: 0;
  }

  100% {
    transform: translateY(1000px) rotate(720deg);
    opacity: 0;
  }
}

.title-container {
  display: flex;
  justify-content: center;
  align-items: top;
  width: 100vw;
  height: 100vh;
  position: absolute;
  flex-flow: column;
}

.title {
  width: max-content;
  text-align: center;
  color: whitesmoke;
  font-size: 40px;
  justify-self: center;
  align-self: center;
}

/* buttons */
.fa1 {
  padding: 12px;
  font-size: 30px;
  /* height: 30px; */
  width: 70px;
  text-align: center;
  text-decoration: none;
  border-radius: 10px;
  border: 3px solid white;
  left: 400px;
  top: 300px;
}

.links-container {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: max-content;
  gap: 10px;
  margin-block: 20px;
  z-index: 1;

}

/* Facebook */
.github {
  background: transparent;
  color: white;
  left: 460px;
  top: 300px;
  transition: all 0.4s ease-in-out;
}

.github:hover {
  background: white;
  color: black;
}

.github-reverse {
  background-color: transparent;
  left: 460px;
  top: 300px;
  color: black;
  transition: all 0.4s ease-in-out;
  border: 3px solid black;
}

.github-reverse:hover {
  background: black;
  color: white;
}

/* .reverse {
  color: black;
  background: transparent;
  border: 3px solid black;
}

.hover-reverse:hover {
  background: black;
  color: white;
} */

/* Twitter */
.twitter {
  background-color: transparent  ;       
  left: 700px;
  top: 300px;
  color: white;
  transition: all 0.4s ease-in-out;
}

.twitter:hover {
  background: white;
  color: black;
}
 
.twitter-reverse {
  background-color: transparent;
  left: 700px;
  top: 300px;
  color: black;
  transition: all 0.4s ease-in-out;
  border: 3px solid black;
}

.twitter-reverse:hover {
  background: black;
  color: white;
}

/* snapchat */
.snapchat {
  left: 820px;
  background: transparent;
  color: white;
  transition: all 0.4s ease-in-out;
}

.snapchat:hover {
  background: white;
  color: black;
}

.snapchat-reverse {
  background-color: transparent;
  left: 820px;
  color: black;
  transition: all 0.4s ease-in-out;
  border: 3px solid black;
}

.snapchat-reverse:hover {
  background: black;
  color: white;
}

/* Instagram */
.instagram {
  background: transparent;
  color: white;
  left: 580px;
  transition: all 0.4s ease-in-out;
}

.instagram:hover {
  background: white;
  color: black;
}

.instagram-reverse {
  background-color: transparent;
  left: 580px;
  color: black;
  transition: all 0.4s ease-in-out;
  border: 3px solid black;
}

.instagram-reverse:hover {
  background: black;
  color: white;
}

.slider-container {
  position: absolute;
  top: 0;
  right: 0; 
  margin: 20px 40px 20px 0;
  z-index: 2;
}

/* .inner-container {
  margin: 0;
  padding: 0;
} */

.checkbox-label {
  width: 30px;
  height: 10px;
  border: 2px solid white;
  padding: 4px;
  position: relative;
  border-radius: 20px;
  transition: all 0.2s ease;
  display: flex;
}

.ball {
  height: 15px;
  width: 15px;
  border-radius: 100%;
  background-color: white;
  position: absolute;
  bottom: 2px;
  right: 21px;
  top: 0.5px;
  left: 1px;
  transition: transform 0.2s ease-in;
}

.sun {
  width: 3px;
  height: 3px;
  color: white;
  position: absolute;
  right: 33.5px;
  left: 0.5px;
  bottom: 15px;
}

.moon {
  width: 3px;
  height: 3px;
  color: white;
  position: absolute;
  left: 22.5px;
  /* top: -0.5px; */
  bottom: 15px;
  padding-right: 5px;
}

.checkbox {
  display: none;
}

.checkbox:checked + .checkbox-label .ball {
  transform: translateX(19px);
}

.cursor-dot,
.cursor-dot-outline {
  pointer-events: none;
  position: absolute;
  top: 50%;
  left: 50%;
  border-radius: 50%;
  opacity: 0;
  transform: translate(-50%, -50%);
  transition: opacity 0.3s ease-in-out, transform 0.3s ease-in-out;
}

.cursor-dot {
  width: 8px;
  height: 8px;
  background-color: white;
}

.cursor-dot-outline {
  width: 40px;
  height: 40px;
  background-color: rgba(241, 241, 241, 0.5);
}

.cursor-dot-black {
  width: 8px;
  height: 8px;
  background-color: black;
}

.cursor-dot-outline-black {
  width: 40px;
  height: 40px;
  background-color: rgba(12, 12, 12, 0.5);
}