/* Giao diện tổng thể */
body {
  background-color: #0f172a; /* Màu nền xanh đen */
  color: white;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 50px;
  margin: 0;
}

/* Ảnh đại diện */
.avatar {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  border: 3px solid #3b82f6;
  margin-bottom: 20px;
  object-fit: cover;
}

/* Tên và giới thiệu */
h1 {
  font-size: 24px;
  margin-bottom: 5px;
  color: #60a5fa;
}

p {
  color: #94a3b8;
  margin-bottom: 30px;
}

/* Danh sách nút bấm */
.container {
  width: 90%;
  max-width: 400px;
}

.link-button {
  display: block;
  background-color: #1e293b;
  color: white;
  text-decoration: none;
  text-align: center;
  padding: 15px;
  margin-bottom: 15px;
  border-radius: 12px;
  font-weight: 600;
  border: 1px solid #334155;
  transition: all 0.3s ease; /* Hiệu ứng mượt mà */
}

/* Hiệu ứng khi di chuột vào nút */
.link-button:hover {
  background-color: #3b82f6;
  transform: translateY(-3px); /* Nhảy lên nhẹ */
  box-shadow: 0 10px 15px -3px rgba(59, 130, 246, 0.5);
}

footer {
  margin-top: 50px;
  font-size: 12px;
  color: #475569;
}
