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

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}
body {
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.5) url(assets/background.png);
  background-size: cover;
  background-blend-mode: darken;
}
.profile-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 370px;
  width: 100%;
  background-color: white;
  border-radius: 24px;
  padding: 10px;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
}
.image {
  position: relative;
  height: 150px;
  width: 150px;
  border-radius: 50%;
  padding: 3px;
  background-color: orange;
}
.image .profile-image {
  height: 100%;
  width: 100%;
  object-fit: cover;
  border-radius: 50%;
  border: 2px solid white;
}
.profile-card .texts {
  margin-top: 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  color: #333;
}

.texts .name {
  font-size: 22px;
  font-weight: 500;
}
.texts .skill {
  font-size: 15px;
  font-weight: 400;
}
.profile-card .socialbuttons {
  margin-top: 10px;
  display: flex;
  align-items: center;
}

.socialbuttons .link {
  border-radius: 50px;
  display: flex;
  font-size: 18px;
  align-items: center;
  justify-content: center;
  margin: 0 5px;
  background-color: orange;
  color: white;
  padding: 3px;
  text-decoration: none;
  width: 30px;
  height: 30px;
}

.profile-card .buttons {
  margin-top: 20px;
  display: flex;
  align-items: center;
}

.buttons button {
  border: none;
  color: white;
  font-size: 14px;
  border-radius: 20px;
  margin: 0 10px;
  padding: 8px 24px;
  background-color: orange;
  cursor: pointer;
  transition: all 0.3s ease;
}

.buttons .button:hover {
  background-color: grey;
}
