@import url('https://fonts.googleapis.com/css2?family=Inter:wght@100..900&display=swap');

* {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

body {
    margin: 0;
    padding: 0;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background: none;
    font-family: "Inter", sans-serif;
    color: #ffffff;
    background-color: #000000;
    text-align: center;
    overflow: hidden;
}

.snowCanvas {
    position: absolute; 
    top: 0; 
    left: 0; 
    z-index: -1;
}

.overlay {
    position: fixed; 
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh; 
    background-color: rgba(0, 0, 0, 1);
    color: #fff;
    font-size: 24px;
    font-weight: bold;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: opacity 0.5s;
    z-index: 1; 
}

.overlay.clicked {
    opacity: 0;
}
  
  .pfp {
    transition: transform 0.3s;
    border: 3px solid #8a2be2;
    border-radius: 50%;
    box-shadow: 0 0 10px #c282ff;
    cursor: pointer;
  }
  
  .pfp:hover {
    transform: scale(1.15);
    box-shadow: 0 0 15px #c282ff;
  }

  .transparent-badge {
    pointer-events: none;
  }

.container {
    width: 500px;
    height: auto;
    border: 1px solid rgba(92, 92, 92, 0.048);
    border-radius: 15px;
    box-shadow: 0 8px 32px 0 rgba(44, 44, 44, 0.747);
    backdrop-filter: blur(5px) contrast(0.8);
    position: relative;
    padding-top: 20px;
    cursor: default;
}

.social-media-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  margin: 20px;
  border-radius: 50%;
}

.socials {
  display: inline-block;
  margin: 10px;
  transition: all 0.2s ease-in-out;
  filter: grayscale(100%) blur(0.7px);
  opacity: 0.5;
  
}

.socials:hover {
  transform: scale(1.2);
  filter: grayscale(100%);
  opacity: 1;
}

.socials:hover img {
  filter: grayscale(100%);
}

.description {
  display: flex;
  justify-content: center;
  align-items: center;
}


#description {
  user-select: none; 
  -webkit-user-select: none; 
  -moz-user-select: none; 
  -ms-user-select: none; 
  pointer-events: none; 
}
