* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}

.container {
  width: 100%;
  height: 100vh;
  background-image: url(back.png);
  background-position: center;
  background-size: cover;
  display: flex;
  align-items: center;
  justify-content: center;
}

.card {
  width: 90%;
  max-width: 440px;
  color: #fff;
  text-align: center;
  padding: 50px 35px;
  border: 1px solid rgba(255, 255,255, 0.305);
background: rgba(255, 255,255, 0.305);
border-radius: 16px;
box-shadow:  0 4px 30px rgba(0,0,0, 0.1);
backdrop-filter: blur(5px);
}
.card img {
  width: 140px;
  border-radius: 50%;
  border-style: groove;
  border-color: blue;
}

.card h2 {
  font-size: 29px;
  font-weight: 600;
  margin-top: 20px;
}
.card p {
  font-size: 18px;
  margin: 10px auto;
  max-width: 330px;
}
.card .media-buttons {
  display: flex;
  align-items: center;
  margin-top: 15px;
}

.card .links {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;

  border-radius: 50%;
  margin: 10px auto; /* Adjust the margin as needed */
  text-decoration: none;
  color: #fff;
  font-size: 30px;
  transition: background 0.5s;
}



.card .links i:hover{
    background: #ff01cf;
    border-radius: 70%;
}


.btn{
    text-decoration: none;
    display: inline-block;
    font-size: 18px;
    font-weight: 500;
    background: #fff;
    color: #ff01cf;
    padding: 10px 30px;
    border-radius: 30px;
    margin: 30px 0 10px;

}