@import url('https://fonts.googleapis.com/css2?family=JetBrains+Mono:wght@500&display=swap');

* {
    font-family: 'JetBrains Mono', monospace;
    color: white;
    margin: 0;
    padding: 0;
}

body {
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #000;
    background-image: linear-gradient(45deg, rgba(0, 0, 0, 0.639) 0%, rgba(255, 255, 255, 0.631) 100%), url('/assets/background.png');
    -webkit-user-select: none; /* Safari */
    -ms-user-select: none; /* IE 10 and IE 11 */
    user-select: none; /* Standard syntax */
}

.container {
    text-align: center;
}

h2 {
    font-size: 1.5em;
    margin: 10px 0;
}

.pfp {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    margin-bottom: 10px;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    position: relative;
}

.preloader {
    font-family: Consolas;
    position: absolute;
    height: 99.8%;
    width: 99.9%;
    background: rgba(0, 0, 0, 1);
    border: 0.72px solid #000000;
    -webkit-backdrop-filter: blur(20px);
    backdrop-filter: blur(20px);
    z-index: 999;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    top: 0;
    left: 0;
    transition: opacity 300ms ease;
}

.profile-card {
    background: rgba(57, 57, 57, 0.1);
    border-radius: 26.7px;
    padding: 20px;
    width: 250px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.67);
    backdrop-filter: blur(10px);
    opacity: 0;
    transform: translateY(20px);
    position: relative;
    display: inline-block;
  }

.profiles {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
    margin-bottom: 30px;
}

.activity {
    color: #ddd;
    font-size: 0.9em;
    margin-bottom: 15px;
    word-wrap: break-word;

}

.social-icon {
    width: 32px;
    height: 32px;
    transition: transform 0.3s;
    filter: drop-shadow(0px 0px 2px #8a8a8a);
}

.social-icon:hover {
    transform: scale(1.2);
}

.role {
   margin-top: -23px; 
   padding: 13px;
   color: #8a8a8a;
   text-align: center;
}


.wallpaper {
    background: linear-gradient(to right, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.8)), url('/assets/background.png');
    background-size: cover;
    background-position: center;
    width: 100%;
    height: 100vh;
    display: flex;
    justify-content: center;

}

.dot {
    position: absolute;
    width: 17px!important;
    height: 17px;
    border-radius: 50%;
    border: 2.2px solid black;
    background-color: gray;
    bottom: 30px;
    right: 10px;
    transform: translate(50%, 50%);
}



@keyframes blink {
    50% {
      opacity: 0;
    }
  }

        @keyframes slideFadeIn {
    0% {
      opacity: 0;
      transform: translateY(20px);
    }
    100% {
      opacity: 1;
      transform: translateY(0);
    }
  }