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: 5rem;
}

#founder-photo {
  border-radius: 50%;
  overflow: hidden;
  width: 35vh;
  height: 35vh;
  display: flex;
  justify-content: center;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

#Photo-and-titles {
  align-items: center;
  display: grid;
  grid-template-columns: 1fr 3fr;
  width: 100%;
  margin-right: 1rem;
}

h2 {
  padding-left: 2.5ch;
  font-size: 4rem;
  margin: 0.5rem 0;
  color: #333;
  padding-bottom: 1rem;
  padding-top: 1rem;
}

#titles {
  list-style: none;
  display: flex;
  flex-direction: column;
  font-weight: bold;
  color: #555;
  padding-right: 2rem;
}

#titles li {
  /* border-style: solid; */
  background-color: #f0ecec;
  /* border-width: 0.5vh; */
  border-color: #555;
  border-radius: 10em;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  padding: 1rem;
  font-size: 2rem;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

#titles li:hover {
  transform: scale(1.05);
}

#technical-skills {
  display: flex;
  flex-direction: column;
  padding: 2rem;
}

#skills-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 5ch;
  width: 100%;
  place-items: center;
}

#skills-gallery img:hover {
  transform: scale(1.1);
}

#cert-gallery {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0ch;
  width: 100%;
  place-items: center;
  margin-bottom: 4rem;
}

#cert-gallery img:hover {
  transform: scale(1.1);
}

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

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