* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html,
body {
  width: 100%;
  min-height: 100vh;
  font-family: "Neue Montreal";
  display: flex;
  justify-content: center;
  align-items: center;
  background: #d3d0bd;
  color: #272525;
}

.preview {
  position: absolute;
  width: 250px;
  height: 250px;
  overflow: hidden;
  pointer-events: none;
  transform-origin: center;
  transform: scale(0);
  z-index: 2;
}

.preview-img {
  width: 100%;
  height: 100%;
  background: url(./sprite.png) no-repeat;
  background-size: cover;
  background-position: 0 0;
  pointer-events: none;
}

p {
  font-size: 14px !important;
  text-transform: uppercase;
  line-height: 100%;
}

#header p {
  opacity: 0.5;
}

.container {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.projects {
  width: 70%;
  display: flex;
  flex-direction: column;
}

.project {
  width: 100%;
  padding: 2.5em 1em;
  display: flex;
  align-items: center;
  border-bottom: 1px solid rgba(0, 0, 0, 0.125);
  cursor: pointer;
}

.project > div {
  flex: 3;
}

.project div:last-child {
  flex: 1;
}

@media (max-width: 900px) {
  .location,
  .service {
    display: none;
  }
}
