* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "proxima-nova";
  text-transform: capitalize;
  transition: all 0.2s cubic-bezier(0.34, 1.12, 0.68, 1.31);
}

.about {
  display: flex;
  justify-content: center;
}

.about article {
  width: 40em;
  padding: 1em;
  text-align: center;
  padding: 2em;
  margin-top: 1.3em;
  margin-bottom: 1.3em;
}

.about p {
  font-weight: 300;
  font-size: 0.9em;
  padding: 0;
  margin: 0;
  text-transform: lowercase;
}

.about h1 {
  font-weight: 600;
  font-size: 1.5em;
  line-height: 0.7em;
}

.gallery {
  min-height: 100vh;
  background: #f5f5f5;
  padding-bottom: 100px;
}

.gallery .controls {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  padding: 13px 0;
  list-style: none;
}

.gallery .controls .buttons {
  display: flex;
  justify-content: center;
  text-align: center;
  align-items: center;
  height: 30px;
  width: 105px;
  background: #fff;
  color: #666;
  font-size: 15px;
  text-transform: lowercase;
  line-height: 40px;
  cursor: pointer;
  margin: 10px;
  box-shadow: 0 3px 5px rgba(0, 0, 0, 0.3);
  text-align: center;
}

.gallery .controls .buttons.active {
  background: black;
  color: #fff;
}

.gallery .image-container {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  background-color: black;
}

.gallery .image-container .image {
  width: 350px;
  overflow: hidden;
  border: 5px solid #fff;
  box-shadow: 0 3px 5px rgba(0, 0, 0, 0.3);
  margin: 15px;
}

.gallery .image-container .image img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}

.gallery .image-container .image:hover img {
  transform: scale(0.95);
}

img {
  pointer-events: none !important;
cursor: default !important;
}


