body {
  background-color: lightgrey;
}

p {
  font-family: Arial;
  border: 1px dashed red;
  padding: 20px;
  border-radius: 8px;
}

.second-style-paragraph {
  color: white;
}

.navigation {
  border-bottom: 1px solid green;
  padding-bottom: 25px; 
  font-family: "UnifrakturCook", cursive;
  padding-left: 50px;
}

.navigation > a {
  text-decoration: none;
  color: black; 
}

.navigation > a:hover {
  color: green;  
}

.subheader {
  margin-left: 50px;  
}

.container {
  width: 100%;
  height: 100%;
}

.grid-item {
  width: 600px;
  display: inline-block;
  margin: 40px;
  border: 1px solid black;
  box-shadow: 3px 3px 12px grey;
}

grid-item > img {
  border-radius: 10px;  
}

.grid-item:hover {
  box-shadow: 3px 3px 12px green;
}

.grid-item > img {
  width:600px;
  height: 400px;
}

li {
  color: black;
  font-size: 20px;
  font-family: Arial;
  font-weight: 700;
  font-style: normal;  
}

li > a {
  text-decoration: none;
  color: orange;
}



























