body {
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    justify-content: center; /* Centers horizontally */
    align-items: center; /* Centers vertically (optional) */
    min-height: 100vh; /* Ensures full viewport height */
    background-color: #f0f0f0;
    font-family:'Segoe UI', Tahoma, Geneva, Verdana, sans-serif
  }


/* Style the navigation menu */
.topnav {
  overflow: hidden;
  background-color: #333;
  position: fixed;
  width: 100%;
  top: 0;
}

/* Hide the links inside the navigation menu (except for logo/home) */
.topnav #myLinks {
  display: none;
}

/* Style navigation menu links */
.topnav a {
  color: white;
  padding: 14px 16px;
  text-decoration: none;
  font-size: 17px;
  display: block;
}

/* Style the hamburger menu */
.topnav a.icon {
  background: black;
  display: block;
  position: absolute;
  right: 0;
  top: 0;
}

/* Add a grey background color on mouse-over */
.topnav a:hover {
  background-color: #ddd;
  color: #000000;
}

.center {
  margin-left:auto;
  margin-right:auto;
  text-align:center;
}








  .container {
    margin-top: 30px;
    scroll-padding-top: 30px;
    width: 80%; /* Adjust width as needed */
    max-width: 1200px; /* Optional: Set a max-width */
    text-align: left; /* Center text inside the container */
    background-color: white;
    padding: 20px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  }
  
  h1 {
    color: navy;
    margin-left: 20px;
  }
  h2 {
    padding-top:80px;
    margin-top:30px;
    color: purple;
    margin-left: 20px;
  }
  h3 {
    color: black;
    margin-left: 20px;
  }
  h4 {
    color: black;
    margin-left: 25px;
  }
  h5 {
    color: black;
    margin-left: 25px;
  }
  h6 {
    color: black;
    margin-left: 25px;
  }
  p {
    margin-left: 30px;
  }
  img{
    width: 400px;
    height: auto;
  }
  