@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700;800;900&display=swap");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}
/* background section */
.container {
  min-height: 100vh;
  width: 100%;
  background-image: linear-gradient(#f8f9d7, #b2c8df);
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  padding: 3.21rem;
  flex-wrap: wrap;
}

/* card section */

.card {
  position: relative;
  min-height: 28rem;
  max-width: 18rem;
  background-color: white;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  border-radius: 20px;
  padding: 1rem;
  gap: 1rem;
  overflow: hidden;
  z-index: 1;
  transition: all linear 0.2s;
  border: 4px solid white;
  cursor: pointer;
}

.user_profile {
  height: 8rem;
  width: 8rem;
  border-radius: 50%;
  z-index: 1;
  transition: all 0.2s linear;
}

.user_name {
  font-size: 1.5rem;
  text-align: center;
  text-transform: uppercase;
  color: #000000;
  font-weight: 800;
  z-index: 1;
}
.name {
  font-size: 1rem;
  font-weight: 300;
  color: #000000;
  z-index: 1;
}
.user_description {
  text-align: center;
  color: #000000;
  font-weight: 300;
  z-index: 1;
}

.list {
  list-style: none;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  z-index: 1;
}
.user_link {
  font-size: 2rem;
  color: #302c2c;
  transition: all 0.2s linear;
}

.facebook:hover {
  color: #4267b2;
}
.github:hover {
  color: #171515;
}
.instagram:hover {
  background: -webkit-linear-gradient(#e1306c, #405de6);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.linkedin:hover {
  color: #0e76a8;
}

/* card hover section */
.card:hover {
  box-shadow: 0px 30px 50px black;
  border: 4px solid white;
  transform: translateY(-10px);
}
