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

body {
  font-family: Georgia, serif;
  background-color: #dcdcd4;
  color: #000;
}

/* Header layout and style */
header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 20px 40px;
  background-color: #dcdcd4;
  position: relative;
}

.nav-left,
.nav-right {
  width: 20%;
}

.nav-left ul,
.nav-right ul {
  list-style: none;
  line-height: 2;
}

.nav-left a,
.nav-right a {
  text-decoration: none;
  color: #000;
  font-weight: bold;
}

.logo {
  width: 100px;
  margin-top: 30px;
}

/*header*/
.name {
  font-family: 'Handlee', cursive;
  font-size: 2.5rem;
  text-align: center;
  width: 60%;
  position: absolute;
  top: 30px;
  left: 20%;
}

/*landscape*/
.hero-image {
  width: 100%;
  height: auto;
  display: block;
}

/*paragraph positioned over the image*/
.intro-text {
  position: absolute;
  top: 200px;
  right: 40px;
  width: 300px;
  font-size: 0.9rem;
  padding: 12px;
  line-height: 1.5;
  font-family: Georgia, serif;
  color: #000;
}

/*footer*/
footer {
  background-color: #dcdcd4;
  text-align: center;
  padding: 20px;
  font-size: 2rem;
  font-weight: bold;
}
