body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
  margin: 0;
}

header {
  display: flex;
  flex-direction: column;
}

nav {
  display: flex;
  justify-content: space-around;
  background-color: #555;
  padding: 1rem;
  font-size: 1.5rem;
  font-weight: bold;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
  width: 100%;
  position: fixed;
  top: 0;
}

nav a {
  color: white;
  padding: 0.5rem 1rem;
}

nav a:hover {
  background-color: #777;
  border-radius: 10rem;
}

#page-name {
  margin-top: 5rem;
  color: #333;
  padding-left: 2ch;
  font-size: 3rem;
}

#inprod,
#indev {
  margin-left: 3.5rem;
  margin-bottom: 4rem;
  margin-right: 3.5rem;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

div {
  background-color: #f0ecec;
  border-radius: 10rem;
  padding-left: 2rem;
  padding-right: 2rem;
  padding-bottom: 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

div a {
  text-decoration: none;
  color: black;
  font-size: 1.5rem;
  font-weight: bold;
  margin-top: 1rem;
}

div:hover {
  scale: 1.05;
}

p {
  margin-left: 2rem;
  margin-right: 2rem;
}

h2 {
  color: #333;
}
footer {
  text-align: center;
  padding: 1rem;
  font-size: 0.8rem;
  display: flex;
  justify-content: center;
  background-color: #555;
  color: white;
  position: fixed;
  bottom: 0;
  width: 100%;
}
