*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Verdana, Geneva, Tahoma,sans-serif;
}
.container{
  width: 100%;
  height: 100vh;
  background-color: #FF3CAC;
  background-image: linear-gradient(225deg, #FF3CAC 0%, #784BA0 50%, #2B86C5 100%);
  background-position: center;
  background-size: cover;
  display: flex;
  align-items: center;
  justify-content: center;
}
.card{
  width: 90%;
  max-width: 420px;
  color: #000000;
  text-align: center;
  padding: 50px 35px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  background: rgba(255, 255, 255, 0.2);
  border-radius: 16px;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(5px);
}
.card img{
  width: 200px;
  border-radius: 50%;
}
.card h2{
  font-size: 40px;
  font-weight: 600;
  margin-top: 20px;
}
.card p{
  font-size: 18px;
  margin: 10px auto;
  max-width: 330px;
}
.card .links img{
  width: 40px;
  border-radius: 50%;
  margin: 10px 5px;
  transition: background 0.5s;
}
.card .links img:hover{
  background: #078d97;
}
btn{
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 10px;
}
.btn{
  height: 40px;
  text-decoration: none;
  display: inline-block;
  font-size: 18px;
  font-weight: 500;
  background-color: rgb(8,78,103);
  color: rgb(9, 255, 0);
  padding: 10px 30px;
  border-radius: 30px;
  margin: 30px 0 10px;
}
