* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, sans-serif;
}

body {
  background: #111;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
}

.main-container {
  width: 350px;
}

.card {
  background: #1c1c1c;
  padding: 25px;
  border-radius: 15px;
  text-align: center;
  box-shadow: 0 0 10px #000;
}

.card img {
  width: 110px;
  height: 110px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 15px;
}

.skill {
  color: #aaa;
  margin-bottom: 10px;
}

.description {
  font-size: 14px;
  color: #ccc;
  margin-top: 10px;
}

.buttons {
  margin-top: 20px;
  display: flex;
  justify-content: center;
  gap: 20px;
}

button {
  background: transparent;
  border: 1px solid #ff8800;
  color: white;
  padding: 10px 18px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 18px;
  transition: 0.2s ease;
}

button:hover {
  background: #ff8800;
}
