@import url("https://fonts.googleapis.com/css2?family=Poppins&display=swap");
* {
  font-family: poppins;
}

body {
  margin: 0;
  padding: 0;
  background: #161623;
  overflow: hidden;
}

body::before {
  content: "";
  width: 300px;
  height: 300px;
  background: linear-gradient(135deg, rgb(55, 0, 255), orange);
  border-radius: 50%;
  position: absolute;
  top: -100px;
  left: 300px;
  z-index: -1;
}

body::after {
  content: "";
  width: 350px;
  height: 350px;
  background: linear-gradient(100deg, rgb(200, 300, 0), rgb(255, 0, 132) );
  border-radius: 50%;
  position: absolute;
  bottom: -100px;
  right: 250px;
  z-index: -1;
}

section {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.card {
  width: 500px;
  height: 500px;
  padding: 500px;
  background: linear-gradient(
    45deg,
    rgba(255, 255, 255, 0.1),
    rgba(255, 0, 0, 0.2)
  );
  backdrop-filter: blur(4px);
  box-shadow: 0 0 20px #000;
  border-top: 2px solid rgba(255, 0, 0, 0.25);
  border-left: 2px solid rgba(255, 255, 255, 0.2);
}

.card img {
  width: 150px;
  border-radius: 50%;
  border: 2px solid #fff;
}

.card h2 {
  color: #fff;
  font-weight: normal;
  font-size: 25px;
}

.card p {
  color: #fff;
  text-align: justify;
  font-size: 15px;
}

.card button {
  display: inline-block;
  width: 50px;
  height: 50px;
  font-size: 22px;
  border-radius: 50%;
  border: none;
  margin-right: 10px;
  color: #fff;
  transition: 0.4s all;
  cursor: pointer;
}
