body {
  background-color: #121212;
  color: #e0e0e0;
  font-family: sans-serif;
  margin: 0;
  padding: 0;
}

header {
  background-color: #1f1f1f;
  padding: 1rem;
  text-align: center;
  
}

nav a {
  margin: 0 1rem;
  color: #a16efc;
  text-decoration: none;
  
}

nav a:hover {
  text-decoration: underline;

}

main {
  padding: 2rem;
}

.project {
  margin-bottom: 2rem;
  background: #1c1c1c;
  padding: 1rem;
  border-radius: 8px;
}
.portfolio-text {
  text-align: center;
  font-size: 40px;
}
.portfolio-text-small {
  text-align: center;
  font-size: 18px;
}
.portfolio-ui-element {
  text-align: center;
  font-size: 25px;
}

.buttons {
  display: inline-block;
  padding: 10px 20px;
  margin: 5px;
  background-color: #76428a;  /* purple accent */
  color: white;
  text-decoration: none;
  border-radius: 6px;
  font-weight: bold;
  transition: background-color 0.2s ease;
}

.buttons:hover {
  background-color: #4e1f61; /* darker on hover */
}
.now-playing-box {
  background-color: #1e1e1e;
  border: 1px solid #444;
  padding: 1rem;
  border-radius: 8px;
  max-width: 300px;
  margin: 2rem auto;
  text-align: center;
  color: #fff;
}

.now-playing-box h3 a {
  color: #76428a;
  text-decoration: none;
}

.now-playing-box img {
  margin-top: 0.5rem;
  border-radius: 4px;
}

.music-section-title {
  text-align: center;
  color: #ccc;
  margin-top: 3rem;
}
.interest-image {
  display: block;
  max-width: 300px;     /* Keeps it from going huge */
  width: 100%;           /* Scales down for smaller screens */
  height: auto;
  margin: 10px auto;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.tool-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin: 20px;
}
