@font-face {
  font-family: 'Aud';
  src: url(Aud-Regular.ttf) format("truetype");
  src: url(Aud-Regular.woff) format("woff");
}

html,
body {
  margin: 0;
  padding: 0;
  font-family: 'Aud';
  text-transform: uppercase;
  background-color: #f6f0ea;
}

a {
  text-decoration: none;

  color: #FD7940;
}

a:hover {
  color: #FCAE68;
}

/* Add a black background color to the top navigation */
.mainnav {
  background-color: white;
  height: 100px;
  position: relative;
  width: 100%;
  z-index: 1;
  box-sizing: border-box;
  padding: 30px 40px 30px 40px;

  pointer-events: auto;
  display: flex;
  flex-wrap: nowrap;
  flex: 1 0 67%;
  align-items: center;
}

#nav-logo {
  width: auto;
  max-width: 100%;
  max-height: 50px;
  padding-right: 2.2em;
}

/* Style the links inside the navigation bar */
.mainnav a.nav {
  float: left;
  text-align: center;
  padding-right: .8em;
  text-decoration: none;
  font-size: 30px;
  color: black;
}

.mainnav a:hover {
  color: #FCAE68;
}

.mainnav a.active {
  color: #FD7940;
}

.dropbtn {
  border: none;
  min-width: 160px;
  background-color: white;
  text-decoration: none;
  font-size: 30px;
  color: black;
  font-family: 'Aud';
  text-transform: uppercase;
}

.dropdown {
  position: relative;
  display: inline-block;
}

.dropdown-content {
  display: none;
  position: absolute;
  background-color: rgb(255, 255, 255);
  min-width: 160px;
  padding: 14px 6px 6px 6px;
  z-index: 2;
}

/* Links inside the dropdown */
.dropdown-content a {
  color: black;
  font-size: 22px;
  padding: 12px 16px 12px 2px;
  text-decoration: none;
  display: block;
}

/* Show the dropdown menu on hover */
.dropdown:hover .dropdown-content {
  display: block;
}

#page-container {
  position: relative;
  min-height: 90vh;
}

#intro {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: center;
  height: 60vh;
  padding: 3.3vmax 12vw;
  margin: 0 auto;
  box-sizing: content-box;
}

#bio {
  padding-bottom: 5.5rem;
  justify-content: center;
  align-items: center;
  height: 30vh;
  padding: 3.3vmax 12vw;
  margin: 0 auto;
  box-sizing: content-box;
}

#bio-text {
  font-size: 24px;
}

#intro-portrait {
  height: auto;
  max-height: 110%;
  max-width: 125%;
}

#intro-text {
  font-size: 36px;
}

#intro-text small {
  font-size: 24px;
}

#footer {
  /* Footer positioning on page */
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 5.5rem;
  /* Footer styling */
  background-color: white;
  /* Footer text styling */
  color: black;
  text-align: center;
  font-size: 1.3rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

@media screen and (max-width: 1485px) {

  #bio-text,
  #intro-text small {
    font-size: 18px;
  }

  #intro-text {
    font-size: 28px;
  }

  #intro {
    padding: 3.3vmax 4vw;
  }
}
