html {
  scrollbar-width: none; /* Firefox */
  -ms-overflow-style: none; /* IE and Edge */
}

html::-webkit-scrollbar {
  display: none; /* Chrome, Safari, Opera */
}

body {
    background-color: #2d3b45;
  text-align: center;
  overflow-y: auto;
  margin: 0;
  padding: 0;
  min-height: 100vh;
  font-family: 'Century Gothic', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  scrollbar-width: none; /* Firefox */
  -ms-overflow-style: none; /* IE and Edge */
  transition: opacity 0.5s ease-out;
}

body::-webkit-scrollbar {
  display: none; /* Chrome, Safari, Opera */
}

body.chromebook-page {
  overflow: hidden;
}



div.wave {
   position: relative;
height: 100%;
}
  
main .clickables {
    width: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
}

div.background {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

#particles-js {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 1;
  background-color: #2d3b45;
  background-image: url("");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: 50% 50%;
}

iframe.card {
  border: none;
  background-color: rgba(0,0,0,.1);
  user-select: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  pointer-events: none;
}

main .clickables a {
    text-decoration: none;
    color: white;
    margin: 10px 5px;
}

main {
    width: 100%;
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    transition: opacity 0.5s ease-out, transform 0.5s ease-out;
}

body.fade-out {
  opacity: 0;
  transition: opacity 0.5s ease-out;
}

body.fade-out main {
  opacity: 0;
  transform: translateY(50px);
}

body::after {
    content: '';
    display: block;
    height: 200vh;
    width: 1px;
}

* {
  margin: 0;
  padding: 0;
  cursor: url("cursor.png") 16 16, auto;
}

#wave {
    position: absolute;
    bottom: -50;
    left: -15;
    width: 110%;
}

.profile:hover {
  height: 214px
}

.profile {
    margin: 10px 0;
    height: 90px;
    border-radius: 16px;
    overflow: hidden;
    width: max-content;
    margin: 0 auto;
    transition: 300ms ease-in-out;
    position: relative;
}

a.cardLink {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
}

.social-buttons {
  display: flex;
  flex-direction: row;
  gap: 20px;
  align-items: center;
  justify-content: center;
}

.social-button {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: rgba(0, 0, 0, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: all 300ms ease-in-out;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.social-button:hover {
  transform: translateY(-5px) scale(1.1);
  background-color: rgba(0, 0, 0, 0.5);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.social-icon {
  width: 32px;
  height: 32px;
  display: block;
  object-fit: contain;
  filter: grayscale(100%) brightness(0.6);
  transition: filter 300ms ease-in-out;
  opacity: 0.7;
}

.github-button .social-icon {
  width: 36px;
  height: 36px;
}

.discord-button .social-icon {
  width: 36px;
  height: 36px;
}

.github-button:hover .social-icon {
  filter: grayscale(0%) brightness(1);
  opacity: 1;
}

.roblox-button:hover .social-icon {
  filter: grayscale(0%) brightness(1);
  opacity: 1;
}

.discord-button:hover .social-icon {
  filter: grayscale(0%) brightness(1) hue-rotate(180deg) saturate(1.8);
  opacity: 1;
}

.exploit-buttons {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: center;
  justify-content: center;
}

.exploit-button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 300px;
  padding: 20px 40px;
  background-color: rgba(0, 0, 0, 0.3);
  border-radius: 16px;
  text-decoration: none;
  color: white;
  font-size: 18px;
  font-weight: 500;
  transition: all 300ms ease-in-out;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.exploit-button:hover {
  transform: translateY(-5px);
  background-color: rgba(0, 0, 0, 0.5);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}
