* {
  box-sizing: border-box;
}

body {
  font-family: Cambria, Cochin, Georgia, Times, "Times New Roman", serif;
  font-size: 21px;
  line-height: 1.5;
  color: rgb(0, 0, 0);
  background-color: rgb(250, 250, 250);
  margin: 0;
  padding: 0;
}

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: black;
  height: 60px;
  position: fixed;
  width: 100%;
}

header {
  padding-top: 60px;
}

.branding {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 1.25em;
  color: white;
  padding-left: 0.5em;
}

.branding img {
  margin-right: 0.5em;
  height: 40px;
}

.branding,
.contact-link {
  font-family: verdana, arial, sans-serif;
}

.contact-link a {
  color: white;
  font-size: 1.25em;
  margin-right: 1em;
  text-decoration: none;
  border-bottom: 2px solid transparent;
}

.contact-link a:hover {
  text-decoration: none;
  color: #fedc00;
  border-bottom: 2px solid#fedc00;
}

h1,
h2 {
  font-family: verdana, arial, sans-serif;
}

h2 {
  text-transform: uppercase;
  margin: 1.5em 0 0.5em 0;
}

main,
.contact {
  max-width: 960px;
  margin: 0 auto;
}

.title {
  background-color: #ffbd00;
  background-image: url("./images/combined-images.jpg");
  background-position: center top;
  background-repeat: no-repeat;
  background-size: cover;

  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 420px;
}

.title h1 {
  font-size: 3em;
  margin: 0;
  padding: 0 0.25em;
}

.title p {
  font-family: verdana, sans-serif;
  font-size: 1.5em;
}

.title h1,
.title p {
  color: white;
  text-align: center;
}

.title p {
  font-size: 2em;
  margin: 0;
}

blockquote {
  font-size: 1.5em;
  font-style: italic;
  border-left: 8px solid #ffbd00;
  margin: 1.25em 0 1em 0;
  padding-left: 1em;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

a {
  color: darkblue;
  text-decoration: none;
  border-bottom: 2px solid transparent;
}

a:hover {
  text-decoration: none;
  border-bottom: 2px solid darkblue;
}

footer {
  background-color: #ffbd00;
  text-align: center;
  padding: 0.5em;
  color: black;
  font-family: "PT Sans", verdana, sans-serif;
  font-weight: 600;
  font-size: 1.25em;
  text-transform: uppercase;
}

.peter-fisher-photo {
  float: left;
  margin: 0 1em 1em 0;
  border-radius: 5px;
}

.contact-container {
  background-color: rgb(237, 237, 237);
  margin-top: 1em;
  padding-bottom: 2em;
}

.contact ul {
  list-style: none;
  padding-left: 0.25em;
}
.welcome,
.services,
.contact {
  padding: 0.25em 1em;
}

ul li {
  margin-bottom: 0.5em;
}

@media screen and (max-width: 768px) {
  body {
    font-size: 19px;
  }
  .title h1 {
    font-size: 2.5em;
  }
  .branding span {
    display: none;
  }
}

@media screen and (max-width: 620px) {
  header {
    position: static;
  }
  .peter-fisher-photo {
    float: none;
  }
  .title h1 {
    font-size: 2.25em;
  }

  .title p {
    font-size: 1.5em;
    margin: 0;
  }
}
