/* Reset default styles */
ul {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  
  /* Style for list items */
  li {
    margin-bottom: 10px;
    font-size: 18px;
  }
  
  /* Style for links */
  a {
    text-decoration: none;
    color: #003a79;
    font-weight: bold;
    font-size: 18px; /* Increase font size */
    transition: color 0.3s ease;
  }
  
  a:hover {
    color: #007bff;
  }
  
  /* Custom bullet */
  li:before {
    content: "•";
    color: #007bff;
    display: inline-block;
    width: 1em;
    margin-left: -1em;
  }
  
  /* Adjust bullet position */
  li {
    padding-left: 1.5em;
  }
  
  /* Center content */
  body {
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin-left: 25%;
    margin-right: 25%;
  }