@import url(https://fonts.googleapis.com/css?family=Exo);

html,
body {
  max-width: 720px;
  margin: auto;
  font-family: 'Exo';
  font-size: 1.0em;
  padding: 40px 20px;
}

.image-row {
  float: right;
  display: flex;
  flex-direction: row;
  gap: 10px
}

.image {
  object-fit: cover;
  height: auto;
  max-width: 150px;
  width: 40vw;
}

#output {
  text-align: start;
}

#hp {
  padding-top: 60px;
  object-fit: cover;
  float: right;
  margin: 0 0 0 15px;
}

.container {
  position: relative;
  display: flex;
  /* other styles */
}

#videoContainer {
  right: 50px;
  display: flex;
  flex-direction: column;
  align-items: end;
  position: fixed;
  width: 60%;
  transform: translateY(-50%);
}

#projectList li {
  cursor: pointer;
  transition: color 0.3s ease;
}

ol {
  padding: 0;
  margin: 0;
}

li {
  padding-left: 6px;
  margin-bottom: 5px;
}

#projectList h4 {
  text-decoration: underline;
  margin: 0;
}

#projectList p {
  margin: 0;
}

#projectList li:hover {
  color: #007bff;
}

/* Responsive adjustments */
@media (max-width: 800px) {
  .container {
    flex-direction: column;
  }

  #projectList,
  #videoContainer {
    width: 100%;
  }
}