body {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 0px;
  padding: 0px;
  font-family: "Ubuntu", sans-serif;
  font-weight: normal;
  font-size: medium;
  max-width: 100vw;
  cursor: pointer;
}

.nav {
  position: sticky;
  top: 0px;
  display: flex;
  background-color: black;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  flex-wrap: wrap;
  align-items: center;
  width: 100%;
  padding-bottom: 10px;
}

.nav > div {
  flex: 1;
  color: white;
}

.nav > .left {
  font-size: 24px;
  font-weight: 700;
  padding-left: 16px;
}

.nav > .right {
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  padding-right: 16px;
}

.nav > .right > a {
  margin-left: 35px;
  color: white;
  text-decoration: none;
}

.section {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  line-height: 30px;
  width: 70%;
}

@media only screen and (max-width: 600px) {
  .section {
    width: 90%;
  }
}

.section > p {
  text-align: center;
}
.project {
  flex-direction: column;
  display: flex;
  align-items: center;
}
.projectDetail .links > a {
  margin-right: 15px;
}
.projectDetail {
  padding-bottom: 20px;
  width: 90%;
}
.footer {
  background-color: rgb(0, 0, 0);
  color: white;
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}

.footer > div {
  display: flex;
  flex-direction: row;
  padding: 10px;
}

.footer > div > a {
  margin-left: 20px;
}

.footer > div > a > img {
  width: 30px;
  height: 30px;
  padding-right: 10px;
}

.material-symbols-outlined {
  color: white;
  font-size: 35px !important;
}
