*,
::after,
::before {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto,
    Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}
nav {
  background-color: rgb(0, 0, 86);
  text-align: center;
}

nav ul {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  list-style-type: none;
  padding: 0;
  margin: 0;
}

nav li {
  flex: 1;
  text-align: center;
}

nav ul a {
  font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
  display: inline-block;
  padding: 20px;
  color: white;
  text-decoration: none;
}

nav ul a:hover {
  transition: 0.3s;
  color: rgb(192, 192, 192);
}

#intro {
  min-height: 40vh;
  background-color: rgb(2, 2, 163);
  color: white;

  display: flex;
  flex-direction: column;

  text-align: center;
  justify-content: center;
  align-items: center;
}

#events {
  display: flex;
  flex-direction: column;
  text-align: center;
  justify-content: center;
  align-items: center;
  min-height: auto;
  padding: 0px 100px 100px 100px;
}

#event-content {
  display: flex;
  flex-direction: row;
  margin: 0px;
}

#event-desc {
  display: flex;
  flex-direction: column;
  text-align: center;
  justify-content: center;
  align-items: center;
  padding: 0px 0px 50px 50px;
}

#committee {
  display: flex;
  flex-direction: column;
  text-align: center;
  justify-content: center;
  align-items: center;
  min-height: 40vh;
  background-color: rgb(255, 255, 240);
  padding: 0px 100px 100px 100px;
}

.image-container {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 8vw;
}

#committee img {
  width: 15rem;
  height: auto;
  border-radius: 8px;
}

#contact {
  display: flex;
  flex-direction: column;
  text-align: center;
  justify-content: center;
  align-items: center;
  min-height: 40vh;

  color: white;
  background-color: rgb(0, 0, 86);
}

#committee div img {
  max-width: 300px;
}
