/* CSS is how you can add style to your website, such as colors, fonts, and positioning of your
   HTML content. To learn how to do something, just try searching Google for questions like
   "how to change link color." */

/* Base styles */
body {
  background-color: #f5f5f5; /* Light gray background */
  color: #000000; /* Black text */
  margin: 0;
  padding: 0;
  line-height: 1.6;
}

/* Content container with white background */
.container {
  background-color: #ffffff;
  max-width: 1200px;
  margin: 20px auto;
  padding: 30px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  border-radius: 4px;
}

/* Headings with descending shades of gray */
h1 {
  color: #333333;
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
}

h2 {
  color: #555555;
  font-size: 2rem;
  margin-bottom: 1.25rem;
}

h3 {
  color: #777777;
  font-size: 1.75rem;
  margin-bottom: 1rem;
}

h4 {
  color: #999999;
  font-size: 1.5rem;
  margin-bottom: 0.75rem;
}

h5 {
  color: #aaaaaa;
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}

h6 {
  color: #cccccc;
  font-size: 1rem;
  margin-bottom: 0.25rem;
}

/* Paragraph and text elements */
p {
  margin-bottom: 1.5rem;
}

a {
  color: #FF69B4;
  text-decoration: none;
}

a:hover {
  color: #FF1493;
  text-decoration: underline;
}

/* Utility classes */
.text-center {
  text-align: center;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .container {
    margin: 10px;
    padding: 20px;
  }
  
  h1 {
    font-size: 2rem;
  }
  
  h2 {
    font-size: 1.75rem;
  }
  
  h3 {
    font-size: 1.5rem;
  }
}