body {
  margin: 0;
  padding: 0;
  color: #373636;
  font-family: "Roboto Light", sans-serif;
  font-weight: 300;
  height: auto;
}

.header {
  background-color: white;
  color: #373636;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  padding: 1% 2% 1% 2%;
}

.header a {
  text-decoration: none;
}

.header h1 {
  color: #373636;
  margin-top: 1.6%;
  transition: color 0.5s;
}
.header h1:hover {
  color: #8d837d;
  transition: color 0.5s;
}

.header h2:hover {
  text-decoration: underline;
}

.header-bar {
  width: 100%;
  height: 6vh;
  background-color: #8d837d; /* 003153 */ /* 26392F */
}

/* General styles for the navigation menu */
.nav-list {
  list-style-type: none; /* Removes default list bullets */
  padding-inline-start: 3.5%;
}

/* Styles for the list items */
.nav-list li {
  margin: 0; /* Space between list items */
}

/* Styles for the links */
.nav-list a {
  font-weight: 300;
  text-decoration: none; /* Removes default underline */
  font-size: 10px;
  color: #777777;
  padding: 5px 0; /* Padding inside the links */
  display: inline-block;
  font-style: normal;
}

.nav-list a:hover {
  transition: color 0.7s;
  color: #c5c1be;
  cursor: pointer;
}

.content {
  margin: 5%;
  margin-bottom: 7%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 2rem;
}

.video {
  width: 100%;
  height: auto; /* Adjust height automatically */
  max-width: 700px;
}
.profile-photo:hover {
  transform: scale(1.1);
  transition: transform 0.5s;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
}
.profile-photo {
  transition: transform 0.5s;
}
footer {
  background-color: #f3f3f3;
  color: white;
  padding: 1% 0;
  position: relative;
  bottom: 0;
  width: 100%;
}

h1 {
  font-family: "Roboto Light", sans-serif;
  font-size: 18px;
  color: #373636;
}
h2 {
  font-size: 10px;
  color: #373636;
}
h3 {
  font-size: 10px;
  color: #373636;
}

p,
li {
  font-family: "Roboto Light", sans-serif;
  font-size: 12px;
  font-style: italic;
  width: fit-content;
}
.font-light {
  font-family: "Roboto", sans-serif;
  font-weight: 300;
}

.min-view-height {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

main {
  margin-top: auto;
  margin-bottom: auto;
}

.links {
  display: flex;
  gap: 8px;
  justify-content: center;
}

.links > a > svg {
  height: 1rem;
  width: 1rem;
  flex-shrink: 0;
}

.textblock {
  text-align: justify;
  hyphens: auto;
}

ul {
  padding-inline-start: 20px;
}
