body {
    background-color: #333;
    color: #fff;
    font-family: Arial, sans-serif;
    text-align: center;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    /* font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif; */

  }

  .container {
    max-width: 800px;
    padding: 20px;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 10px;
    text-align: center; /* Center the content */
  }

  h1 {
    font-size: 2em;
    margin-bottom: 20px;
  }

  nav ul {
    list-style: none;
    padding: 0;
    display: inline-block; /* Center the nav horizontally */
  }

  nav li {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
  }

  nav a {
    text-decoration: none;
    display: flex;
    color: #ad8515;
    align-items: center;
    font-size: 22px; /* Adjust the font size as needed */
    font-weight: bold; /* Make the text bold */
    margin-left: 10px; /* Add some space between the icon and text */
  }

  nav a img {
    width: 50px; /* Adjust the size as needed */
    margin-right: 20px; /* Add some space between the icon and text */
  }

nav a:hover {
    color: #00bcd4;
}
