h1 {
  font-size: 2rem;
  text-shadow: 1px 1px 20px #333;
}

h2 {
  color: white;
}

a.btn {
  cursor: pointer;
}

#content {
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr auto;
}

#projects {
  width: 80%;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: start;
  gap: 20px;
  grid-column: 1 / 3;
}

#projects a {
  margin: 25px auto 0px auto;
}

.project {
  position: relative;
  background: var(--url);
  background-position: center;
  background-size: cover;
  display: block;
  flex: 0 0 calc(33% - 20px);
  aspect-ratio: 1 / 1;
  overflow: hidden;
}

.project .cover {
  position: absolute;
  z-index: 1;
  inset: 0;
  background: none;
  transition: 0.3s;
}

.project:hover .cover {
  background: rgba(0, 0, 0, 0.75);
  transition: 0.5s;
  pointer-events: none;
}

.project .information {
  position: absolute;
  z-index: 2;
  opacity: 0;
  height: 100%;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: 0.5s;
}

.project:hover .information {
  opacity: 1;
}

.project .information > *:not(a) {
  color: white;
}

#project-highlights {
  width: 80%;
  gap: 20px;
  grid-column: 1 / 3;
}

#project-highlights > div {
  flex: 0 0 calc(33% - 20px);
}