*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  background-color: darkgray;
  font-family: verdana, sans-serif;
  font-size: 16px;
  color: maroon;
  line-height: 1.25;
}

header {
  width: 100%;
  display: inline;
  position: fixed;
  padding: 20px 50px;
  background-color: maroon;
  color: white;
  font-size: 18px;
  font-family: garamond, serif;
  font-style: italic;
  text-transform: uppercase;
  z-index: 10;
  text-align: right;
}

.name {
  font-weight: 700;
  text-align: left;
}

nav a {
  padding: 0px 10px;
}

nav a:link {
  color: white;
  text-decoration: none;
}
  
nav a:hover {
  color: crimson;
  text-decoration: none;
}

.sticky {
  position: sticky;
  top: 100px;
}

.image {
  height: 200px;
  width: auto;
  float: right
}

main {
  position: relative;
  top: 100px;
  max-width: 1000px;

}

.upper {
  width: 700px;
  height: auto;
  border-radius: 25px;
  background-color: white;
  margin: 0px 50px;
}
  
.upper h1 {
  text-align: center;
  font-weight: 800;
  letter-spacing: 5px;
  margin: 15px;
  padding: 15px 0px 0px 0px;
}

.hero img {
  width: 100%;
  height: 100%;
  border-radius: 25px;
  padding: 10px;
}

.hero figcaption {
  color: black;
  text-align: center;
  padding: 10px;
}

.quote {
  font-style: italic;
  text-align: center;
  padding: 10px;
}

.lower {
  width: 900px;
  height: auto;
  border-radius: 25px;
  background-color: white;
  margin: 25px 50px;
}

.lower p {
  padding: 15px;
}

footer {
  position: relative;
  top: 100px;
  margin: 10px 100px;
  padding: 0px 0px 20px 0px;
}

footer a {
  color: black;
  text-decoration: none;
  font-weight: 800;
  font-size: 14px;
  text-transform: uppercase;
}

footer a:hover {
  color: white;
}
  
