body {
  background-color: #c0c0c0;
  color: #000000;
  font-family: "Tahoma", "Arial", sans-serif;
  text-align: center;
  padding: 0;
  margin: 0;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  padding-top: 50px;
}

.navbar {
  width: 100%;
  background-color: #c0c0c0;
  border-bottom: 2px solid #808080;
  display: flex;
  align-items: center;
  padding: 0 1rem;
  box-sizing: border-box;
  position: fixed;
  top: 0;
  left: 0;
}

.navbar-item {
  margin-right: 1rem;
  font-family: "Tahoma", "Arial", sans-serif;
  font-size: 1rem;
  color: #000000;
  cursor: pointer;
  user-select: none;
  padding: 0.5rem 1rem;
  border: 2px solid #c0c0c0;
  border-top-color: #ffffff;
  border-left-color: #ffffff;
  border-bottom-color: #808080;
  border-right-color: #808080;
  background-color: #c0c0c0;
}

.navbar-item:active {
  border-top-color: #808080;
  border-left-color: #808080;
  border-bottom-color: #ffffff;
  border-right-color: #ffffff;
}

.container {
  padding: 2rem;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

h1 {
  font-size: 2rem;
  margin-bottom: 1rem;
  font-weight: normal;
}

.nav-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin: 1rem 0;
}

.nav-button {
  display: inline-block;
  padding: 0.5rem 1rem;
  font-size: 1rem;
  font-family: inherit;
  background-color: #c0c0c0;
  border: 2px solid #808080;
  border-right-color: #ffffff;
  border-bottom-color: #ffffff;
  border-left-color: #808080;
  border-top-color: #808080;
  text-decoration: none;
  color: #000000;
  cursor: pointer;
  box-sizing: border-box;
  margin: 0.5rem;
}

.nav-button:active {
  border-right-color: #808080;
  border-bottom-color: #808080;
  border-left-color: #ffffff;
  border-top-color: #ffffff;
}

.nav-button[data-active="true"] {
  border-right-color: #808080;
  border-bottom-color: #808080;
  border-left-color: #ffffff;
  border-top-color: #ffffff;
  background-color: #a0a0a0;
}

.projects-wrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  margin-top: 3rem;
}

.project-card {
  width: 320px;
  background-color: #c0c0c0;
  border: 2px solid #c0c0c0;
  border-top-color: #ffffff;
  border-left-color: #ffffff;
  border-bottom-color: #808080;
  border-right-color: #808080;
  padding: 1rem;
  text-decoration: none;
  color: black;
  font-family: "Tahoma", "Arial", sans-serif;
  display: flex;
  flex-direction: column;
  align-items: center;
  box-sizing: border-box;
}

.project-card:active {
  border-top-color: #808080;
  border-left-color: #808080;
  border-bottom-color: #ffffff;
  border-right-color: #ffffff;
}

.project-image {
  width: 200px;
  height: 120px;
  margin-bottom: 0.5rem;
  border: 2px solid black;
  object-fit: cover;
}


.project-text {
  text-align: center;
}

.project-text strong {
  display: block;
  margin-bottom: 0.2rem;
}

