#cv {
  scroll-margin-top: 60px; /* makes anchor links land below navbar */
  margin-top: 80px; /* pushes the visible section down */
}

/* Make sure the PDF object is responsive */
#cv object {
  width: 100%;
  height: 80vh; /* makes it responsive to viewport height */
  border: 1px solid #ddd;
  border-radius: 8px;
  background-color: white;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

/* Adjust for smaller devices */
@media (max-width: 768px) {
  #cv object {
    height: 70vh;
  }
}
@media (max-width: 480px) {
  #cv object {
    height: 60vh;
  }
}
