body {
  font-family: Arial, sans-serif;
  margin: 20px;
}

h1 {
  color: #333;
  text-align: center;
}

header {
  background-color: #f5f5f5;
  padding: 10px;
  position: sticky;
  top: 0;
  z-index: 1;
}

nav ul {
  display: flex;
  justify-content: center;
}

nav li {
  margin: 0 10px;
}

nav a {
  text-decoration: none;
  color: #333;
  font-weight: bold;
  font-size: 11px;
}

h2 {
  color: #666;
  margin-top: 30px;
}

p {
  color: #777;
  margin-bottom: 10px;
}

ul {
  list-style: none;
  padding-left: 0;
}

li {
  margin-bottom: 5px;
}

a {
  color: #337ab7;
  text-decoration: none;
}

.pdf-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
}

.pdf-container .asset {
  width: 45%;
  padding: 10px;
  box-sizing: border-box;
}

.pdf-container .vert-video {
  width: auto;
  padding: 10px;
  box-sizing: border-box;
}

.pdf-container .hor-video {
  width: 50%;
  padding: 10px;
  box-sizing: border-box;
}

.pdf-container .wide-asset {
  width: 100%;
}

.pdf-container embed,
.pdf-container video {
  width: 100%;
  height: 800px; /* Adjust the height for desktop */
  border: 1px solid #ccc;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
}

@media screen and (max-width: 768px) {
  .pdf-container .asset {
    width: 100%;
  }

  .pdf-container .wide-asset {
    width: 100%;
  }

  .pdf-container embed,
  .pdf-container video {
    height: auto; /* Let the content determine the height on mobile */
  }
}

<style>
  /* Style for the notable projects section */
  .project {
    margin-bottom: 20px;
  }

  .project h3 {
    margin-top: 0;
    font-size: 18px;
    color: #333;
  }

  .project p {
    margin-bottom: 10px;
    font-size: 14px;
    color: #666;
  }
</style>
