#ProjectsContainer {
  width: 100%;
  height: calc(100vh - 3.5rem);
  position: fixed;
  left: 0;
  top: 100vh;
  opacity: 0;
  color: black;
  z-index: 2;

  background-color: white;
  -webkit-transition: opacity 200ms ease-out, top 200ms cubic-bezier(1.000, 0.000, 1.000, 0.000);
  transition: opacity 200ms ease-out, top 200ms cubic-bezier(1.000, 0.000, 1.000, 0.000);
}

#ProjectsContainer.Active {
  top: 3.5rem;
  opacity: 1;

  -webkit-transition: top 400ms cubic-bezier(0.740, 1, 0.620, 0.750);
  transition: top 400ms cubic-bezier(0.740, 1.555, 0.620, 0.750);;
}

#CloseProjectsButton {
  position: absolute;
  top: 0;
  right: 0;
  border: none;
  background-color: transparent;
  padding: 0.5rem 1.5rem;

  display: flex;
  flex-direction: column;
  align-items: center;

  font-size: 2rem;
  font-family: 'Lato', sans-serif;
  font-weight: 300;
  color: #444;
  cursor: pointer;
}

.ProjectsList {
  height: 100%;
  width: 100%;
  max-width: 80rem;
  overflow: auto;
  padding: 2rem 3rem;
  margin: auto;

  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: flex-start;
  align-content: flex-start;
}

.ProjectItem {
  display: flex;
  flex-direction: column;
  align-items: center;

  padding: 2rem;
  border: none;
  background-color: transparent;
  cursor: pointer;
}

.ProjectName {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  padding-bottom: 0.25rem;
  border-bottom: 1px solid transparent;
}

.ProjectImage {
  width: 20rem;
  height: 15rem;
  border: 1px solid #aaa;
}

.ProjectImage img {
  max-width: 100%;
  max-height: 100%;
}

.ProjectItem:hover .ProjectName,
.ProjectItem:active .ProjectName {
  border-color: black;
}

.ProjectItem:hover .ProjectImage,
.ProjectItem:active .ProjectImage {
  box-shadow: 0 0 5px 2px #435e6e34;
}
