body {
  background-color: #ecfffd;
  font-family: sans-serif;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
}

.card {
  background: white;
  width: 500px;
  padding: 20px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
  .card {
    width: 90%;
    max-width: 500px;
  }
}

.avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
}

.links {
  text-align: center;
}

.links a {
  display: inline-block;
  margin: 5px;
  text-decoration: none;
  color: white;
  background: #00d5f2;
  padding: 2px 5px;
  border-radius: 6px;
}

.links a:hover {
  background: #a4f3ff;
}

.main-contents {
  text-align: left;
}

.contets-title {
  color: #505050;
  font-size: 15px;
}

.bio {
  color: gray;
  font-size: 12px;
  margin: 15px 0;
}

.text-links a {
  color: #00d5f2;
  font-size: 13px;
}

.text-links li {
  list-style: none;
  position: relative;
  padding-left: 20px;
  color: gray;
  font-size: 10px;
}

.text-links li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 3px;

  width: 12px;
  height: 12px;

  background-image: url("./img/star.png");
  background-size: contain;
  background-repeat: no-repeat;
}

.text-links a:hover {
  color: #a4f3ff;
}

.summary-label {
  font-size: 12px;
  color: #505050;
  background-color: #a4f3ff;
  cursor: pointer;
}

.summary-label:hover {
  background-color: #e3fcff;
}
