.navbar {
    text-align: center;
    display: flex;
    flex-wrap: wrap;
    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);
  }

* {
  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;
  display: flexbox;
}

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

header h1 {
  font-size: 2.5rem;
  font-weight: bold;
  margin-bottom: 10px;
}

header p {
  font-size: 1.2rem;
  margin-top: 5px;
}

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);
}

.intro {
  margin-bottom: 20px;
  line-height: 1.8;
  font-size: 1.1rem;
  text-align: center;
}

.intro p {
  margin-bottom: 15px;
}

.projects {
  margin-bottom: 20px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
}

.projects h2 {
  font-size: 1.8rem;
  margin-bottom: 20px;
  text-align: center;
}

.project {
  background: #f9f9f9;
  padding: 15px;
  border-radius: 6px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  margin-bottom: 15px;
  text-align: center;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  
}

.project h3 {
  font-size: 1.5rem;
  margin-bottom: 10px;
}

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

footer p {
  margin: 5px 0;
}

footer a {
  color: #fff;
  text-decoration: underline;
}

footer a:hover {
  color: #ddd;
  text-decoration: none;
}