* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Lato', sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #F7F7F7;
  background-image: url('background.jpeg');
  background-size: cover;
  background-position: center;
}

header {
  background-color: #08460A;
  padding: 1em;
  text-align: center;

}


nav {
  display: flex;
  flex-direction: column;
  align-items: center;

}


nav h1 {
  font-size: 60px;
  color: #FFFFFF;
  margin-right: -5px;
  margin-bottom: 20px;
  margin-top: -7px;
}


nav ul {
  list-style: none;
  margin: 0;
  padding: 20px;
  display: flex;
  justify-content: space-between;
  gap: 500px;

}


nav li {
  font-size: 40px;
}


nav a {
  color: #FFFFFF;
  text-decoration: none;
}


nav a:hover {
  color: #CCCCCC;
}

main {
  height: 200vh;
  align-items: center;
  padding: 2em;
  font-size: 40px;
	
}

h1, h2 {
  color: #08460A;
  margin: 50px 0 80px;
  text-align: center;
  text-shadow: 1px 1px 2px #FFFFFF;
}

section {
  margin-bottom: 20px;
}

ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

li {
  margin-bottom: 20px;
}

span {
  width: 100px;
  height: 100px;
  display: absolute;
  background-color: #fff;
  margin-right: 100px;
}

p, h3 {
  margin: 0;
  display: inline-block;
  vertical-align: top;
  font-weight: bold;
  color: #fff;
  margin-top: 40px;
}

h3 {
  font-size: 74px;
	margin-left: 10px;
}

p {
  font-size: 74px;
	margin-left: 10px;
}

.harmony span:hover, .bold span:hover {

  transform: scale(1.1);

}




.typography-example h2{
	font-size: 60px;
}

.typography-example h1{
	margin-top: -50px;
	

}

.typography-example p {
	display: flex;
	justify-content: center;
	align-content: center;
	margin-bottom: 10px;
	margin-left: -3px;
	
}



.imagery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 40px;
}

.imagery-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
}



footer {
  background-color: #08460A;
  padding: 1em;
  text-align: center;
  color: #FFFFFF;
  font-size: 10px;
}
