@charset "UTF-8";

/* Global Styles */
body {
  background-color:#000;
/* Black background */
  color:#fff;
/* White text */
  font-family:Arial,sans-serif;
/* Choose a suitable font */
}

.container {
  max-width:1200px;
  margin:0 auto;
}

/* Section Styles */
.section {
  padding:20px;
  margin-bottom:30px;
  border:1px solid #333;
}

/* Legends Section */
.legends-section {
  background-color:#222;
}

/* Videos & Pictures Section */
.videos-pictures-section {
  background-color:#333;
}

/* Goals Section */
.goals-section {
  background-color:#444;
}

/* Example: Additional styling for each section */
.legends-section h2,.videos-pictures-section h2,.goals-section h2 {
  color:#ffcc00;
/* Yellow heading color */
}

/* Customize as needed */