@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600&display=swap");
* {
  box-sizing: border-box;
}

body {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 90vh;
  font-family: "Poppins", sans-serif; /* Apply the imported font */
  background-color: #f4f4f4;
}

.container {
  max-width: 600px;
  width: 400px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  position: relative;
  flex-direction: column;
  background: linear-gradient(to bottom, #f4f4f4, rgba(255, 255, 255, 1));
  height: 90vh;
  border-bottom-right-radius: 24px;
  border-bottom-left-radius: 24px;
  border-top-right-radius: 24px;
  border-top-left-radius: 24px;
  box-shadow: 0 4px 6px #777;
}

.img-container {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #4070f4;
  height: 25vh;
  width: 401px;
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
  margin-bottom: 50px;
}

.img-container img {
  position: relative;
  top: 35px;
  border-radius: 50%;
  border: 2px solid #fff;
  box-shadow: 0 0 0 2px #4070f4;
  object-fit: cover;
}

.container .words {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.words .name {
  font-size: 1.5rem;
  font-weight: 600;
  color: #333;
  margin-bottom: 10px;
}
.words .job {
  font-size: 1rem;
  font-weight: 400;
  color: #777;
  margin-bottom: 10px;
}
.icons {
  margin-top: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.icons a {
  background-color: #000;
  margin-left: 10px;
  margin-right: 10px;
  text-decoration: none;
  border-radius: 50%;
  padding: 10px;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.icons a i {
  color: #fff;
  font-size: 1.2rem;
}
.buttons {
  display: flex;
  align-items: center;
  justify-content: center;
}
.buttons .button {
  margin: 5px;
  margin-top: 30px;
  padding: 10px;
  width: 120px;
  border-radius: 24px;
  border: none;
  background-color: #4070f4;
  color: #fff;
  font-size: 1rem;
  font-weight: 500;
  cursor: pointer;
}
.analytics {
  display: flex;
  align-items: center;
  justify-content: center;
}
.data {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 25px;
  border-right: 2px solid #777;
}
.data:last-child {
  border-right: none;
}
.data i {
  padding: 10px;
  margin-left: 10px;
}
.data span {
  margin-right: 20px;
}
