/* Reset default margin and padding */
body,
h1,
h2,
h3,
p,
ul,
ol,
li {
  margin: 0;
  padding: 0;
}

/* Set body background color and font */
body {
  background-color: #1f1f1f;
  color: #ccc;
  font-family: Arial, sans-serif;
}

/* Header styles */
header {
  background-color: #252525;
  padding: 20px;
  text-align: center;
}

/* Heading styles */
h1,
h2,
h3 {
  color: #fff;
  margin: 20px 0;
}

/* Section styles */
section {
  padding: 20px;
}

/* Footer styles */
footer {
  background-color: #252525;
  color: #999;
  padding: 10px;
  text-align: center;
}

/* Paragraph styles */
p {
  margin-bottom: 15px;
  line-height: 1.5;
}

/* Links styles */
a {
  color: #6cf;
  text-decoration: none;
}

a:hover {
  color: #9cf;
}

/* List styles */
ul,
ol {
  margin-bottom: 15px;
}

/* List item styles */
li {
  margin-bottom: 5px;
}

/* Media query for mobile responsiveness */
@media screen and (max-width: 768px) {
  /* Adjustments for smaller screens */
  header,
  footer {
    padding: 10px;
  }

  h1,
  h2,
  h3 {
    font-size: 22px;
  }

  p {
    font-size: 14px;
  }

  /* Optional: Adjust other elements as needed for mobile layout */
}

strong {
  color: rgb(255, 255, 0);
}
