.navbar {
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #727e76;
    color: black;
    padding: 0.25rem 0.5rem;
    position: relative;
    top: 0;
    z-index:1000;
  }
  
  .navbar-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    gap: 1rem; /* Space between buttons */
    text-align: center;
  }
  
  .navbar-links li {
    margin: inline;
  }
  
  .navbar-links a {
    text-decoration: none;
    display: inline-block;
    padding: 0.50rem 1rem;
    font-size: 1.5rem;
    font-weight: bold;
    color: black;
    background-color:#727e76;
    border-radius: 5px;
    transition: background-color 0.3s ease, transform 0.2s ease;
    text-align: center;
  }
  
  .navbar-links a:hover {
    background-color:#909b94;
    transform: translateY(-2px);
  }
  h1{
    text-align: center;
    margin: auto;
    padding: 1rem;
    font-family: 'Merriweather', Georgia, serif;
    font-size: 3.5rem;
  }
 
 img{
    display: block;
    margin-left: auto;
    margin-right: auto;
    margin-top: 14px;
  }
  * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f4f4f9;
    padding: 0 20px;
}

header {
    background: #333;
    color: #fff;
    padding: 20px 0;
    text-align: center;
}

header h1 {
    font-size: 2.5rem;
    font-weight: bold;
}

main {
    max-width: 800px;
    margin: 20px auto;
    background: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.about {
    margin-bottom: 20px;
    line-height: 1.8;
    font-size: 1.1rem;
}

.about h2 {
    font-size: 2rem;
    margin-bottom: 15px;
    color: #444;
    text-align: center;
}

.about p {
    margin-bottom: 15px;
    font-size: 1.1rem;
}
footer {
  text-align: center;
  margin-top: 20px;
  padding: 10px 0;
  background: #333;
  color: #fff;
  font-size: 0.9rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

footer p {
  margin: 5px 0;
}
