body {
  font-family: "Quicksand", serif;
  font-size: 1.05rem;
  font-weight: 500;
  margin: 0;
  padding: 0;
  text-align: center;
}

.div-container {
  max-width: 850px;
  margin: 50px auto;
  padding: 20px;
}

img {
  width: 150px;
  height: 150px;
  border-radius: 50%;
}

h1 {
  margin-top: 10px;
}

nav a {
  margin: 0 10px;
  text-decoration: none;
  color: gray;
}

h2 {
  font-size: 24px;
}

p {
  text-align: left;
  line-height: 1.6;
}

a {
  color: blue;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.bold-link {
  font-weight: 600;
}

ul {
  font-weight: 400;
}

ul li {
  margin-bottom: 10px;
}

/* Resume Frame Styling */
.resume-container {
  margin-top: 20px;
  width: 100%;
  height: 1200px;
  overflow: visible;
}

iframe {
  width: 100%;
  height: 100%;
  border: none;
  outline: none;
}

/* Make iframe height responsive */
@media (max-width: 768px) {
  .resume-container {
    height: 800px;
  }
}

@media (max-width: 480px) {
  .resume-container {
    height: 600px;
  }
}
