/* styles.css */

/* Body styles */
body {
  font-family: Arial, sans-serif;
  margin: 20px;
  padding: 20px;
  font-size: 16px;
  line-height: 1.5;
}

/* Heading styles */
h1 {
  text-align: center;
  font-size: 32px;
  margin-bottom: 30px;
}

h2 {
  font-size: 24px;
  margin-bottom: 20px;
}

/* Paragraph styles */
p {
  margin-bottom: 20px;
}

/* Link styles */
a {
  color: #007bff;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

/* Responsive styles */
@media (max-width: 768px) {
  body {
    font-size: 14px;
  }
  
  h1 {
    font-size: 26px;
  }
  
  h2 {
    font-size: 20px;
  }
}
