* {
  cursor: none;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

html,
body {
  cursor: none;
}

.cursor-container {
  position: fixed;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 10000;
}

.box {
  position: absolute;
  width: 25px;
  height: 25px;
  top: 50%;
  left: 50%;
  margin: -12.5px 0 0 -12.5px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  -webkit-backface-visibility: hidden;
  opacity: 0;
}

.box.arrow {
  background: url('http://lmgtfy.com/assets/mouse_arrow_windows_aero-b118000dc97d4558d6db021793acc613.png') no-repeat center center transparent;
  border-radius: 0;
}


@font-face {
  font-family: "Terminus";
  src: url(/assets/terminus.ttf);
}

@font-face {
  font-family: "proggy";
  src: url(/assets/ProggyTiny.ttf);
}

@font-face {
  font-family: "logo";
  src: url(/assets/recide.otf);
}


* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}


.sillyrainbow {
  font-weight: bold;
  background-image: linear-gradient(90deg, #3eacd9, #9e67d1, #cc7c99, #cca96d, #ccd93f);
  animation: smoothRGB 3s infinite linear;
  background-size: 300% 300%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}


#welcome {
  height: 100vh;
  width: 100vw;
  background-image: url('assets/welcome.gif');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-color: black;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

#welcome::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: inherit;
  filter: brightness(40%);
  z-index: 0;
  transition: filter 0.3s ease-in-out;
}


#enter {
  font-size: 155%;
  font-family: Terminus, sans-serif;
  text-align: center;
  z-index: 1;
  animation: smoothRGB 1.5s infinite linear;
  background-image: linear-gradient(90deg, #3eacd9, #9e67d1, #cc7c99, #cca96d, #ccd93f);
  background-size: 300% 300%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  transition: font-size 0.4s ease-in-out, letter-spacing 0.4s ease-in-out, font-weight 0.3s ease-in-out;
}

#enter:hover {
  font-size: 160%;
  font-weight: 600;
  letter-spacing: 5px;
  -webkit-text-fill-color: white;
  text-shadow: 0 0 10px white;
  background-image: none;
}


.welcome-darken::before {
  filter: brightness(15%) !important;
}


@keyframes smoothRGB {
  0% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0% 50%;
  }
}


.fade-to-black {
  animation: fadeToBlack 2s ease-in-out forwards;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 9999;
}

@keyframes fadeToBlack {
  0% {
    opacity: 1;
    background-color: transparent;
  }

  100% {
    opacity: 1;
    background-color: black;
  }
}


.fade-in-image {
  animation: fadeIn 1s ease-in-out forwards;
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}


#logo {
  display: none;
  font-size: 700%;
  font-family: logo;
  color: transparent;
  -webkit-text-stroke: 1px rgba(255, 255, 255, 0.26);
  letter-spacing: 100px;
  opacity: 10%;
  z-index: 69;
}

#logo.animate {
  animation: collapseLogo 650ms ease-in forwards;
}

@keyframes collapseLogo {
  0% {
    letter-spacing: 50px;
    opacity: 0;
  }

  30% {
    opacity: 1;
  }

  100% {
    letter-spacing: 0px;
    opacity: 1;
  }
}


#profile-container {
  width: 500px;
  padding: 20px;
  background-color: rgba(14, 14, 14, 0.45);
  border-radius: 15px;
  box-shadow: 0 0 10px rgba(255, 255, 255, 1);
  text-align: center;
  backdrop-filter: blur(10px);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: none;
}


#social-container {
  background-color: rgba(14, 14, 14, 0.45);
  border-radius: 15px;
  box-shadow: 0 0 10px rgba(255, 255, 255, 1);
  backdrop-filter: blur(10px);
  position: absolute;
  top: 70%;
  left: 50%;
  transform: translate(-50%, -50%);
  padding: 20px 50px 20px 20px;
  display: none;
  justify-content: center;
  align-items: center;
  gap: 30px;
  overflow: visible;
}


.social-item {
  position: relative;
  display: flex;
  font-size: larger;
  flex-direction: column;
  align-items: center;
}


.submenu {
  position: absolute;
  top: calc(100% + 5px);
  left: 50%;
  transform: translateX(-50%);
  background-color: rgba(14, 14, 14, 0.9);
  padding: 4px 8px;
  border-radius: 4px;
  font-family: proggy;
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out;
}


.social-item:hover .submenu {
  opacity: 1;
  visibility: visible;
}


.rainbow-text {
  background-image: linear-gradient(90deg, #3eacd9, #9e67d1, #cc7c99, #cca96d, #ccd93f);
  background-size: 300% 300%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: smoothRGB 1.5s infinite linear;
  font-family: proggy;
  font-size: 1rem;
}


#social-container i {
  color: #ffffff;
  font-size: 2rem;
  transition: transform 0.3s ease-in-out;
}

#social-container i:hover {
  transform: scale(1.2);
  text-shadow: 0 0 1px white, 0 0 20px white;
}



@keyframes fadeInProfile {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}


.shake-animation {
  animation: shake 0.5s ease-in-out forwards;
}

@keyframes shake {
  0% {
    transform: translate(-50%, -50%) rotate(0deg);
  }

  20% {
    transform: translate(-48%, -50%) rotate(-2deg);
  }

  40% {
    transform: translate(-52%, -50%) rotate(2deg);
  }

  60% {
    transform: translate(-49%, -50%) rotate(-1deg);
  }

  80% {
    transform: translate(-51%, -50%) rotate(1deg);
  }

  100% {
    transform: translate(-50%, -50%) rotate(0deg);
  }
}


#profile-picture {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid rgb(255, 255, 255);
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.8), 0 0 20px rgba(255, 255, 255, 0.6);
}


#profile-name {
  font-family: Verdana, Geneva, Tahoma, sans-serif;
  font-size: 22px;
  text-shadow: 0 0 3px white;
  background-image: linear-gradient(90deg, #3eacd9, #9e67d1, #cc7c99, #cca96d, #ccd93f);
  animation: smoothRGB 3s infinite linear;
  background-size: 300% 300%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin: 10px 0 5px;
}


#profile-description {
  font-family: Terminus;
  font-size: 16px;
  color: white;
  opacity: 0.8;
}