body {
  background: #fff;
}

.loader {
  border: 16px solid #f3f3f3;
  border-top-color: #3498db;
  border-radius: 50%;
  width: 80px;
  height: 80px;
  animation: 2s linear infinite spin;
}

@keyframes spin {
  0% {
    transform: rotate(0);
  }

  100% {
    transform: rotate(360deg);
  }
}

.loading {
  display: none;
}

.parent {
  justify-content: center;
  align-items: center;
  display: flex;
}

.gallery {
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  display: flex;
}

.gallery .gallery-img {
  cursor: pointer;
  max-width: 100%;
  max-height: 200px;
  margin: 5px;
}

.modal-image {
  object-fit: cover;
}

@media only screen and (width >= 300px) {
  .work-grid {
    grid-column-gap: 2em;
    grid-row-gap: 2em;
    grid-template-columns: 1fr;
    display: grid;
  }
}

@media only screen and (width >= 1024px) {
  .work-grid {
    grid-column-gap: 2em;
    grid-row-gap: 2em;
    grid-template-columns: 1fr 1fr 1fr;
    display: grid;
  }
}

.sidebar {
  background-color: #111;
  width: 0;
  height: 100%;
  padding-top: 60px;
  transition: all .5s;
  position: fixed;
  top: 0;
  right: 0;
  overflow-x: hidden;
}

.sidebar a {
  color: #818181;
  padding: 8px 8px 8px 32px;
  font-size: 25px;
  text-decoration: none;
  transition: all .3s;
  display: block;
}

.sidebar a:hover {
  color: #f1f1f1;
}

.closebtn {
  margin-left: 50px;
  font-size: 36px;
  position: absolute;
  top: 0;
  right: 25px;
}

.closebtn:hover {
  color: #fff;
  cursor: pointer;
}

/*# sourceMappingURL=index.a097447b.css.map */
