
/* General */

body {
  background-image: url(../assets/images/light-background.jpg);
  background-attachment: fixed;
  background-size: cover;
}

main h2 {
  margin: 30px 0;
  font-family: 'Cormorant', serif;
  font-weight: 400;
  font-size: 48px;
}

main p {
 margin: 30px 0;
 font-size: 20px;
}

main nav a {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
  min-height: 200px;
  margin: 20px 0;
  padding: 30px;
  color: #fff;
  background-position: center;
  background-size: cover;
}

main nav a:nth-child(1) {
  background-image: url(../assets/images/journal-a.jpg);
}

main nav a:nth-child(2) {
  background-image: url(../assets/images/journal-b.jpg);
}

main nav a:nth-child(3) {
  background-image: url(../assets/images/journal-c.jpg);
}

main nav a:nth-child(4) {
  background-image: url(../assets/images/journal-d.jpg);
}

main nav a:focus,
main nav a:hover,
main nav a:active {
  text-decoration: none;
}

main nav a:focus::before,
main nav a:hover::before,
main nav a:active::before {
  position: absolute;
  top: -2px;
  bottom: -2px;
  left: -2px;
  right: -2px;
  content: '';
  border: 4px solid #aa0000;
}

main nav a strong {
  margin-bottom: 10px;
  line-height: 2em;
  border-bottom: 1px solid #fff;
}

main nav a div {
  max-width: 320px;
  font-family: 'Cormorant', serif;
  font-weight: 600;
  font-size: 36px;
}

main nav a:focus div,
main nav a:hover div,
main nav a:active div {
  text-decoration: underline;
}

@media (min-width: 850px) and (min-height: 785px) {

  main nav {
    display: flex;
    flex-wrap: wrap;
  }

  main nav a {
    width: 300px;
    margin: 10px 0;
  }
  
  main nav a:nth-child(odd) {
    margin-right: 10px;
  }

  main nav a:nth-child(even) {
    margin-left: 10px;
  }

}

