*{
    list-style: none;
    text-decoration: none;
}

body {
  font-family: 'Open Sans', sans-serif;
  background-image: url('https://wallpapershome.com/images/pages/pic_h/17753.jpg');
  background-size: cover;       
  background-position: center;  
  background-repeat: no-repeat; 
  background-color: #121212;
  color: #fff;
  height: 100vh;
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.container {
  background-color: rgba(255, 255, 255, .15);
  border: 3px solid rgba(255, 255, 255, .2);
  box-shadow: 0 0 30px rgba(227, 228, 237, 0.4);
  background-color: transparent;              
  backdrop-filter: blur(20px);  
  border-radius: 16px;
  padding: 35px;
  text-align: center;
  width: 300px;
  max-width: 80%;
}

.profile {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid #c2c2c2;
}

.social-media {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 0;
  list-style: none;

  div {
    width: 100%;
    max-width: 1500px;

    ul {
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 0;
      margin: 5px 0;
      gap: 20px;

      a {
        transition: all .5s ease;
      }

      a:hover {
        transform: translateX(8px) rotate(8deg);
      }

      li {
        cursor: pointer;
        color: rgba(255, 255, 255, .6);
        
        .bx {
          font-size: 1.9rem;
          color: #fff;
        }
      }

      
    }
  }
}

.sub-title {
  margin-bottom: 20px;
}

.link {
  display: flex;
  align-items: center;          
  justify-content: center;
  padding: 5px 10px;
  border-radius: 30px;
  margin: 20px 0px;
  text-decoration: none;
  height: 40px;
  background-color: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, .2);
  color: #fff;
  gap: 10px;    
  transition: all .4s ease;                
}

.link:hover {
  transform: scale(1.1);
  border: 1px solid rgba(255, 255, 255, .6);
}

.link i {
  font-size: 24px;
  color: #fff;
  display: flex;
  align-items: center;          
  justify-content: center;      
  height: 100%;                 
}

.link p {
  margin: 0;
  color: #fff;
  display: flex;
  align-items: center;          
}