<header class="header"> 
  <!-- Your header content --> 
</header> 
header { 
  
} 

/* Body styles */
body {
  font-family: 'Times New Roman';
font-size=60pt;
text-align:justify;
text-justify: inter-word;
  background-color: #f5f5f5;
  color: #333;
}


/* Header styles */
header {
  background-color: #007bff;
  color: white;
  padding: 10px 20px;
  text-align: center;
}



/* Navigation styles */
nav {
  display: flex;
  justify-content: space-around;
  background-color: #ffffff;
}

nav a {
  color: #0056b3;
  text-decoration: none;
  padding: 10px;
}

nav a:hover {
   background-color: #fff;
   color: #0056b3;
}

/* Article styles */
article {
  background-color: white;
  padding: 20px;
  margin: 20px;
  border-radius: 5px;
}

article h2 {
  color: #007bff;
}

article p {
  line-height: 1.5;
}

/* Footer styles */
footer {
  background-color: #007bff;
  color: white;
  text-align: center;
  padding: 10px;
}

/* Button styles */
.button {
  padding: 8px 12px;
  background-color: #007bff;
  color: white;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

.button:hover {
  background-color: #0056b3;
}