/* General Styling */
body {
  font-family: Arial, sans-serif;
  background-color: #4b4b4d;
  color: #333;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

header {
  background-color: #222;
  color: #fff;
  padding: 20px;
  text-align: center;
}

h1 {
  margin: 0;
  font-size: 2.5rem;
}

h2 {
  color: #222;
  font-size: 1.8rem;
  margin-bottom: 10px;
}

p {
  font-size: 1rem;
}

/* Section Styles */
section {
  margin: 40px 10%;
  padding: 20px;
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

#projects, #links {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-evenly;
}

#projectCards a, #linkCards a {
  display: inline-block;
  margin: 15px;
  padding: 15px 30px;
  background: #222;
  color: #fff;
  text-decoration: none;
  border-radius: 8px;
  font-size: 1.2rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
}

#projectCards a:hover, #linkCards a:hover {
  background: #444;
  transform: scale(1.05);
}

/* Contact Section */
#contact {
  text-align: center;
}

/* Background Music Section */
#background-music audio {
  display: block;
  margin: 20px auto;
  width: 80%;
  border-radius: 8px;
}

/* YouTube Player */
#youtube-player iframe {
  display: block;
  margin: 20px auto;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

/* Footer Styling */
footer {
  text-align: center;
  padding: 20px;
  background-color: #222;
  color: #fff;
  position: fixed;
  bottom: 0;
  width: 100%;
}

footer p {
  font-size: 0.8rem;
  margin: 0;
}
