body { 
  font-family: Times; 
}
a {
  text-decoration: none; 
}
a.underlined {text-decoration: underline;}
h3 {
  text-align: center; 
}
.navbar {
  width: 550px;
  height: 60px
  justify-content: center;
  align-items: center;
  padding: 0 15px;
  background-color: ivory; 
  border: black solid 2px; border-radius: 5px;
  display: flex;
}
.logo { 
  font-size: 32px;
  font-weight: bold; 
  color: black;
}
nav { 
  width: 100%; 
  max-width: 750px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.nav-links {
  display: flex; 
  flex-direction: row;
  gap: 40px;
  color: black;
}
.nav-links > a {
  color: black;
  text-decoration: none;
  transition: .4s ease-in-out;
}
.nav-links > a:hover {
   cursor: pointer; 
   border-radius: 5px; 
   transition: 0.3s ease; 
}
div#introbox { 
  width: 575px;
  font: 11pt Times; 
  border: none; 
}
