body,html {
  background-color: #000;
  color: #fff;
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center; /* Căn giữa theo chiều dọc */
  align-items: center; /* Căn giữa theo chiều ngang */
  user-select: none; /* Không cho phép chọn văn bản */
  -webkit-user-select: none; /* Hỗ trợ trình duyệt WebKit */
  -moz-user-select: none; /* Hỗ trợ Firefox */
  -ms-user-select: none; /* Hỗ trợ Internet Explorer */
}

canvas {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0; /* Đảm bảo canvas nằm dưới các phần tử khác */
}

.avatar-container {
  position: relative;
  z-index: 1; /* Đặt giá trị lớn hơn các canvas */
}

.avatar {
  border-radius: 50%; /* Để ảnh đại diện có hình tròn */
  width: 150px; /* Đặt kích thước cho ảnh đại diện */
  height: 150px; /* Đặt kích thước cho ảnh đại diện */
}

h1,
p {
  position: relative;
  z-index: 1; /* Đặt giá trị lớn hơn canvas */
  text-align: center; /* Căn giữa văn bản */
  margin-top: 10px; /* Tạo khoảng cách giữa ảnh đại diện và văn bản */
}

.music-info {
  position: absolute;
  bottom: 10px; /* Cách đáy 10px */
  right: 10px; /* Cách phải 10px */
  background-color: rgba(0, 0, 0, 0.7); /* Nền trong suốt */
  color: #fff;
  padding: 5px 10px; /* Khoảng đệm cho dòng hiển thị */
  border-radius: 5px; /* Bo góc */
}

.welcome-message {
  position: fixed;
  top: 0;
  width: 100%;
  background-color: #333;
  color: #fff;
  padding: 10px;
  text-align: center;
  z-index: 1000;
}
.welcome-message button {
  background: #555;
  color: #fff;
  border: none;
  padding: 5px 10px;
  margin-left: 20px;
  cursor: pointer;
}
.quotes {
  font-style: italic;
  color: #e4e4e4;
  font-size: 1.2em;
  margin: 20px auto;
  text-align: center;
  max-width: 600px;
  border-left: 5px solid #333;
  padding-left: 15px;
  background-color: transparent;
  z-index: 1;
}

.quotes span {
  display: block;
  font-weight: bold;
  margin-top: 10px;
  color: #e4e4e4;
}


