/* GLOBALS */

body {
  font-family: 'Playfair Display', Georgia, serif;
  margin: 0 auto;
}

header {
  margin: auto;
  width: 700px;
  max-width: 75%;
  text-align: center;
}

h1 {
  font-size: 40px;
}

h2 {
  text-align: center;
  color: #969696
}

/* HEADER SECTION */

.subtitle {
  line-height: 20px;
  text-align: center;
  margin: 20px auto;
}

/* PROJECT SECTION */

.section-title {
  margin-top: 50px;
}

.projects-container {
  width: 75%;
  margin: 20px auto;
}

.project-card {
  margin: 20px auto;
  position: relative;
  border: solid 1px #666666;
}

.project-image {
  width: 100%;
  object-fit: cover;
}

.project-card .overlay {
  display: none;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  color: white;
}

.project-card:hover .overlay {
  display: flex;
  justify-content: center;
  align-items: center;
  background: rgba(0, 0, 0, .75);
}

.project-info {
  text-align: center;
}

.project-title {
  margin-top: 0;
  font-size: 5vw;
}

.project-description {
  margin-bottom: 0;
  font-size: 3vw;
}
