/* styles.css */

body {
    font-family: "Poppins", sans-serif;
    background-color: #28282b;
    color: #e0e0e0;
    padding: 20px;
    margin: 0;
  }
  
  .container {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
    background-color: #333;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
  }
  
  h1 {
    color: #ffb86c;
    margin-bottom: 20px;
    text-align: center;
  }
  
  a {
    color: #8be9fd;
    text-decoration: none;
  }
  
  a:hover {
    text-decoration: underline;
  }

  p{
    color: #ccc;
    text-align: center;
  }
  
  .navbar {
    display: flex;
    justify-content: center;
    gap: 20px;
    padding: 15px;
    background-color: #444;
    border-radius: 10px;
    margin-bottom: 20px;
  }
  
  .nav-link {
    color: #e0e0e0;
    font-size: 1.1em;
  }
  
  .nav-link:hover {
    color: #ffb86c;
    cursor: pointer;
  }
  
  /* Optional: Center the SVG */
.header-svg {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 20px; /* Adjust the space between the header and the content */
}

.main-header-svg {
  max-width: 100%;
  height: auto;
  width: 300px; /* You can adjust the width as per your design */
}
