/* General Reset */
body, h1, h3, h6, p, div, a, ul, li {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Body Styles */
body {
  font-family: Arial, sans-serif;
  background-color: #fdf6e4;
  color: #333;
  line-height: 1.6;
  padding: 20px;
}

/* Container Div */
div {
  text-align: center;
  margin: 0 auto;
  max-width: 800px;
  padding: 20px;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* Link Styling */
a {
  text-decoration: none;
  color: #d52e2e;
  transition: color 0.3s;
}

a:hover {
  color: #9b2222;
}

/* Heading Styles */
h1 {
  font-size: 2.5em;
  color: #d52e2e;
}

h3 {
  font-size: 1.5em;
  font-style: italic;
  color: #666;
}

h6 {
  font-size: 1.2em;
  font-weight: bold;
  margin-top: 20px;
  color: #444;
}

/* Paragraph Styling */
p {
  font-size: 1.2em;
  margin-top: 10px;
}

/* Image Styling */
img {
  display: block;
  visability: visable;
  max-width: 600px;
  max-height: 400px;
  height: auto;
  margin-top: 20px;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* List Styling */
ul {
  list-style-type: none;
  margin-top: 20px;
  padding: 0;
  text-align: center;
}

li {
  font-size: 1.2em;
  margin: 5px 0;
  display: inline-block;
  text-align: center;
}

/* Responsive Design */
@media (max-width: 600px) {
  h1 {
    font-size: 2em;
  }

  h3 {
    font-size: 1.2em;
  }

  h6 {
    font-size: 1em;
  }

  p, li {
    font-size: 1em;
  }
}

