.placeholder {
  height: 86px;
}

nav {
  display: flex;
  justify-content: space-between;
  position: fixed;
  background-color: white;
  width: 100vw;
  border-bottom: 4px solid black;
  z-index: 99;
}
nav div {
  display: flex;
  align-items: center;
} 
nav a {
  vertical-align: middle;
  padding: 0px 50px;
  text-decoration: none;
  cursor: pointer;
  font-size: 1.5rem;
  color: black;
}
.logo {
  width: 200px;
  margin: 15px 20px;
}
.seleced {
  font-weight: bold;
}

header > div {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-bottom: 4px solid black;
}
header > #img {
  background-image: url("../images/quizBackground.jpg");
  background-size: cover;
  height: 500px;
  color: white;
}
header h1 {
  font-size: 100pt;
}
header h2 {
  font-size: 48pt;
}

main {
  margin: 50px;
}
main p {
  margin: 25px;
  font-size: 18pt;
}
main h3 {
  font-size: 26pt;
  margin-left: 1.5rem;
}
main > div > div > p {
  margin: 0px;
  margin-left: 50px;
  font-size: 14pt;
}

footer {
  display: flex;
  justify-content: space-between;
  padding: 10px;
  border-top: 4px solid black;
}
footer > div {
  margin: 15px;
}
footer img {
  height: 34px;
  vertical-align: middle;
  margin-left: 10px;
}
footer > div > p {
  font-size: 24px;
}
footer > div > p > a {
  font-size: 20px;
  text-decoration: none;
  color: black;
}