@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&display=swap");
* {
  font-family: "Poppins", sans-serif;
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
.container {
  width: 100%;
  height: 100vh;
  background: #212121;
  display: flex;
  justify-content: center;
  align-items: center;
}

.profile-card {
  width: 90%;
  max-width: 450px;
  text-align: center;
  background: #fff;
  color: #333;
}
.cover-pic {
  display: block;
  width: 100%;
}

.profile-pic {
  width: 140px;
  border-radius: 50%;
  margin-top: -70px;
  box-shadow: 0 0 0 0px #ff004f;
  transition: box-shadow 0.5s;
}

.profile-pic:hover{
  box-shadow: 0 0 0 5px #ff004f;
}
.profile-card h1 {
  font-weight: 600;
}
.follow-btn {
  display: inline-block;
  text-decoration: none;
  border: 1px solid #ff004f;
  color: #555;
  padding: 6px 35px;
  margin: 25px 0;
}
.row {
  display: flex;
  justify-content: space-around;
}

.row h2 {
  font-weight: 500;
  font-size: 30px;
}

.view-btn{
  display: inline-block;
  text-decoration: none;
  background: #ff004f;
  width: 100%;
  padding: 15px 0;
  margin-top: 20px;
  color: #fff; 
  text-transform: uppercase;
}


