h1, h2, h3, h4, h5, h6 {
  font-family: cursive;
}
h2 {
  font-size: 2em;
}
h3 {
  font-size: 1.5em;
}
h4 {
  font-size: 1.2em;
}
h5 {
  font-size: 1em;
}
h6 {
  font-size: 0.8em;
}
p {
  font-family: Arial, sans-serif;
  font-size: 1em;
  line-height: 1.5;}
.card {
  width:calc(100% - 40px);
  background-color: #f7f5f4;
  padding: 20px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}
header {
  text-align: center;
   background-image: url(../img/bkg.jpeg); /* Background image */
}
body { background-color: #f5cba4;}

.main-content {
  padding: 20px;
  width: 80%;
  align-items: center;
  margin: 0 auto; /* Center the main content */
   justify-content: center;
}

.main-content h1, h2, p {
  color: #333;
    text-shadow: none;
    
}

.header-container {
  display: flex;
  justify-content: space-between; /* Space between left and right sections 
*/
padding: 20px;  
align-items: center; /* Center vertically */
  height: 480px; /* Fixed header height */
}

.left-section {
  width: calc(100% - 420px); /* Subtract the width of the right section 
from the full width */
  justify-content: center; /* Center horizontally within left section */
  align-items: center; /* Center vertically within left section */
}

.right-section {
  width: 380px; /* Fixed with for the Facebook page widget */
  display: flex;
  justify-content: center; /* Center horizontally within right section */
  align-items: center; /* Center vertically within right section */
}

.left-section h1, .left-section p {
  margin-left: 20px;
  margin-bottom: 8px; /* Optional: Add some space below the heading and 
paragraph */
}

.container {
  background-color: #e7dfcc;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
  padding: 20px;
}

.topnav {
  background-color: #333;
  overflow: hidden;
}

/* Style the links inside the navigation bar */
.topnav a {
  float: left;
  display: block;
  color: #f2f2f2;
  text-align: center;
  padding: 14px 16px;
  text-decoration: none;
  font-size: 17px;
}
.topnav a:hover {
  background-color: #ddd;
  color: black;
}
.topnav a.active {
  background-color: white;
  color: black;
}
.topnav .icon {
  display: none;
}

@media screen and (max-width: 600px) {
img {
  width: 100%;
  height: auto; /* Maintain aspect ratio */
}
.main-content {
  width: 100%; /* Full width on small screens */
margin: 0 auto; /* Center the main content */
}
.container {
  display: block; /* Stack the container vertically */
  width: 90%; /* Full width */
  padding: 10px;
}
 .topnav .logo {
    display: none;}
    .topnav a:not(:first-child) {display: none;}
  .topnav a.icon {
    float: right;
    display: block;
  }
  .topnav.responsive {position: relative;}
  .topnav.responsive a.icon {
    position: absolute;
    right: 0;
    top: 0;
  }
  .topnav.responsive a {
    float: none;
    display: block;
    text-align: left;
  }

  .left-section {display: block; width: auto; text-align: center;}
  .right-section {display: block; width: 100%; text-align: center;  justify-content: center;}
  .header-container {  justify-content: center;
  display: block; height: auto; /* Allow height to adjust based on content */
  }
}