/* body styling */
body {
  font-family: Arial, sans-serif;
  background-color: red;
  margin: 0;
  padding: 0;
}

/* header styles */
header {
  background-color: black;
  color: white;
  padding: 20px;
  text-align: center;
}
/* heading styles */
h1, h2, h3, h4, h5, h6 {
  background-color: black;
  color: white;
  text-align: center;
  padding: 20px;
  font-size: 36px;
  font-weight: bold;
  margin: 20px 0;
}





/* Paragraph box */


p {
  color: white;
  font-size: 36px;
  max-width: 700px;
  margin: 20px auto;
  text-align: center;
  line-height: 1.6;
  font-weight: bold;
  background-color: black;
}
/* label */
label {
  color: white;
  font-weight: bold;
  font-size: 20px;
}
/* aside */
aside {
  color: white;
  font-size: 36px;
  max-width: 700px;
  margin: 20px auto;
  text-align: center;
  line-height: 1.6;
  font-weight: bold;
}

/* Gallery  */
.gallery {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  padding: 20px;
  max-width: 1200px;
  margin: auto;
}

.gallery img {
  width: 300px;
  height: 200px;
  object-fit: cover;
  border: 2px solid black;
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.2);
}

/* Footer  */
footer {
  background-color: #333;
  color: white;
  padding: 10px 0;
  margin-top: 40px;
}