body {
  font-family: "Advent Pro", sans-serif;
  background-color: #f8f9fa;
  scroll-behavior: smooth;
  font-size: 1vw;
  margin: 0;
}

.logo-section {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  text-align: center;
  max-width: 90%;
  height: 100vh;
  padding: 0 20px;
}

.logo-section img {
  max-width: 100%;
  height: auto;
  max-height: 80vh;
  margin-right: 20px;
}

.logo-section h1 {
  margin: 0;
  font-size: 10vw;
  opacity: 1;
}

.navbar {
    border-radius: 3px;
    background-color: #f8f9fa;
    display: flex;
    width: 100%;
    position: sticky;
    top: 0;
    right: 0;
    border-bottom: 1px solid #dfe0e1;
    justify-content: center;
}

.portrait-photo {
  display: none;
}

.landscape-photo {
  display: block;
}

.portrait-photo {
  display: none;
}

.landscape-photo {
  display: block;
}

.navbar a {
  text-decoration: none;
  margin: 0 10px;
  font-size: 30px;
  color: #000;
}

.navbar a:hover {
  text-decoration: underline;
}

.small-logo {
  width: 10vh;
  height: auto;
}

.circle {
  background: linear-gradient(135deg, #98fb98, #32c732);
  border: 2px solid #32c732;
  width: 8vw;
  height: 8vw;
  display: flex;
  align-items: center;
  justify-content: center;
}


@media (max-width: 768px) {
  body {
    font-size: 2vh;
    line-height: 1.5;
  }

  .logo-section h1 {
    font-size: 8vw;
  }

  .navbar a {
    font-size: 16px;
  }

  .small-logo {
    width: 20vw;
  }

  h1, h2, h3, h4, h5, h6 {
    font-size: 1.5em;
    line-height: 1.2;
  }

  p {
    font-size: 1em;
    line-height: 1.5;
  }

  .profile-details h6 {
    font-size: 1.2em;
  }

  .profile-details p {
    font-size: 1em;
  }
}
