body {
  background-color: navy;
}

header
{
  background: url("https://images.unsplash.com/photo-1464802686167-b939a6910659?ixlib=rb-1.2.1&ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&auto=format&fit=crop&w=1450&q=80");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  color: black;
  top: 0;
  left: 0;
  z-index: 1;
  width: 100%;
  height: 15vh;
  padding-top: 2vh;
  font-size: 2.5vh;
  font-family: Merriweather, serif;
  text-align: center;
  overflow: hidden;
}


nav
{
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  padding: 20px;
  background-color: cyan;
  margin: 0;
}

nav a
{
  margin: 0px 10px;
  text-decoration: none;
  font-size: 20px;
  color: black;
}

nav a:hover
{
  color: #fff67a;
}
#project-container
{
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  border-radius: 2%;

}

#content
{
  margin: 15px;
  padding: 1vw;
  max-width: 90vw;

}

h1
{
  padding: 2vw;
  margin: 0 2vw;
  font-family: "Merriweather Sans", sans-serif;
  text-align: center;
}
.project
{
  display: flex;
  flex-wrap: wrap;
  margin: 15px;
  padding: 1vw;
  max-width: 90vw;
  background: url("https://images.unsplash.com/photo-1464802686167-b939a6910659?ixlib=rb-1.2.1&ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&auto=format&fit=crop&w=1450&q=80");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  text-align: center;
  border-radius: 2%;
}
  
.screenshot
{
  max-width: 85vw;
  max-height: 85vh;
  border-radius: 2%;
}

@media (min-width: 700px)
  {
    .project
    {
      max-width: 40vw;
    }
}

@media (min-width: 1100px)
  {
    .project
    {
      max-width: 20vw;
    }
}

a:hover {
 color: lightgreen
}

h1:hover
{
  color: cyan;
}

p:hover
{
  color: cyan;
}