html, body, h1, h2, h3, h4, h5, h6, p, ul, li, button {
  margin: 0;
  padding: 0;
}

body {
  background: #f5f5f5;
  color: #333;
  display: flex;
  flex-direction: row;
  font-family: "Jacquard 12", system-ui, sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.artist-desc,
.music-list li,
.sub-tagline {
  font-family: "Noto Sans", sans-serif;
}

.sidebar {
  width: 220px;
  background-color: #f0f0f0;
  border-right: 1px solid #ddd;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 40px;
}

.profile {
  text-align: center;
  margin-bottom: 40px;
}

.avatar {
  width: 100px;
  height: 100px;
  object-fit: cover;
  border-radius: 50%;
  margin-bottom: 15px;
  border: 2px solid #ccc;
}

.artist-name {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 5px;
}

.artist-desc {
  font-size: 14px;
  color: #666;
}

.music-list {
  width: 80%;
  text-align: center;
  background-color: #ffffff;
  border: 1px solid #ddd;
  border-radius: 10px;
  padding: 20px;
}

.music-list h3 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 15px;
  color: #333;
}

.music-list ul {
  list-style: none;
}

.music-list li {
  font-size: 14px;
  padding: 5px 0;
  cursor: pointer;
  transition: color 0.3s;
}

.music-list li:hover {
  color: #E05C5C;
}

.main-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 20px;
}

.title-container {
  text-align: center;
  padding: 40px 0;
  border-bottom: 1px solid #ddd;
  width: 100%;
}

.title-container h1 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 10px;
  color: #333;
}

.title-container .tagline {
  font-size: 14px;
  color: #666;
  font-style: italic;
  margin-bottom: 5px;
}

.title-container .sub-tagline {
  font-size: 14px;
  color: #999;
  font-family: "Noto Sans", sans-serif;
}

.emotion-selection {
  margin-top: 20px;
  display: flex;
  gap: 20px;
}

.emotion-btn {
  font-size: 16px;
  padding: 10px 20px;
  background-color: #fff;
  border: 1px solid #ccc;
  border-radius: 5px;
  cursor: pointer;
}

.emotion-btn:hover {
  background-color: #eee;
}

#p5-canvas-container {
  width: 900px;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 30px;
}

#input-textbox {
  width: 50%;
  padding: 10px;
  font-size: 16px;
  border: 2px solid #ccc;
  border-radius: 8px;
  margin-bottom: 30px;
  outline: none;
  transition: border-color 0.3s ease;
}

#input-textbox.enter-pressed {
  border-color: #CED9B0;
}

.controls {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 20px;
}

.control-btn {
  background: none;
  border: none;
  font-size: 24px;
  margin: 0 15px;
  cursor: pointer;
  color: #333;
  transition: color 0.3s ease;
}

.control-btn:hover {
  color: #7f7f7f;
}

canvas {
  display: block;
  border: 1px solid #ddd;
  background: #fafafa;
}
