title {
  text-align: center;
}

body {
    margin: 0;
    font-family: Arial, sans-serif;
  }
  
.header {
  background-color: #020a52;
  color: white;
  text-align: center;
  padding: 5px;
  margin-bottom: 0px;
  margin-top: 0px;
}

.container {
  max-width: 500px;
  padding: 5px;
  margin: 0 auto;
  margin-left: auto;
  margin-right: auto;
}

  h1 {
    text-align: center;
    font-size: 30px;
    font-weight: 200;
    margin: 0;
    padding: 0px;
  }
  
  h2 {
    text-align: center;
    font-size: 20px;
    margin-top: 40px;
    margin-left: auto;
    margin-right: auto;
  }

  h3 {
    text-align: left;
    font-size: 20px;
    margin-top: 40px;
  }
  
  p {
    font-size: 16px;
    line-height: 1.2;
    /* max-width: 800px;
    /* ; Change the value as per your requirement */
    margin-left: 20%;
    margin-right: 20%;
    text-align: justify;
  }
  
  ul {
    text-align: center;
    list-style: none;
    padding: 0;
    margin: 0;
  }
  
  li {
    font-size: 20px;
    margin-bottom: 10px;
    display: inline-block;
  }

  li2 {
    font-size: 15px;
    margin-bottom: 30px;
  }
  
  .center {
    display: block;
    margin-left: auto;
    margin-right: auto;
  }
  
  img {
    max-width: 100%;
    max-height: 100%;
  }

  nav {
    background-color: #020a52;
  }
  
  ul {
    list-style-type: none;
    margin-bottom: 20px;
    padding: 0;
  }
  
  nav ul li a {
    display: block;
    color: white;
    text-align: center;
    padding: 8px;
    text-decoration: none;
  }
  
  nav ul li a:hover {
    background-color: #3c49b9e7;
  }

  figcaption {
    color: rgb(0, 0, 0);
    font-style: italic;
    padding: 2px;
  }

  .image-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(450px, 1fr));
    gap: 3px; /* Add some gap between items */
    justify-items: center; /* Center items horizontally */
    align-items: center; /* Center items vertically */
  }

  .image-container figure {
    text-align: center; /* Center the caption */
  }

  .round {
    border-radius: 15%;
  }