/* Set the font family and background color for the entire website */
body {
padding: 20px;
  max-width: 1200px;
  margin: auto;
  font-family: Arial, sans-serif;
  background-color: #f8f8f8;
}

/* Style the header section, which contains the logo and navigation menu */
header {
  background-color: #361E36;
  padding: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}


/* Style the navigation menu */
nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
}

nav li {
  margin: 0 10px;
}

nav a {
  color: #f8f8f8;
  text-decoration: none;
  font-size: 18px;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: normal;
}

/* Style the main content section */
main {
  margin-left: 40px;
  margin-top: 40px;
  margin-right: 20px;
  color: #361E36;
}

main h1 {  
  font-size: 30px;
  font-weight: bold;
  margin-bottom: 20px;
}

main h2 {
  font-size: 17px;
  font-weight: bold;
  margin-bottom: 10px; 
}

main p {  
  text-align: justify;
  font-size: 13px;
  line-height: 1.5;
  margin-top: 0px;
  margin-bottom: 10px;
}

main a {
  color: #361E36;
  text-decoration: none;
  font-size: 12px;
  font-weight: bold;  
}

main h1 sup {
  font-size: 20px;
}

main p sup {
  font-size: 12px;
}

main imgr img {
  float: right;
  margin-top: -40px;
  margin-left: 20px;
  margin-right: -20px;
  margin-bottom: 10px;
}
main imgl img {       
  float: left; 
  margin-top: -40px;    
  margin-left: -40px;    
  margin-right: 20px;
  margin-bottom: 10px;
}

/* Style the footer section */
footer {
  background-color: #361E36;
  color: #f8f8f8;
  padding: 10px;
  text-align: center;
}

footer p {
  margin: 0;
  font-size: 11px;
}

footer a {  
  text-decoration: none;
  font-size: 13px;
  font-weight: bold;
}