body {
  font-family: "Ubuntu", sans-serif;
}

.wrapper {
  padding: 0px;
}

.wrapper header {
  margin-bottom: 0px;
}

.wrapper h2 {
  margin: 0px;
}

.para-wrapper {
  padding: 10px;
}

.para-wrapper p {
  line-height: 1.6; 
  font-family: Helvetica;
  text-align: justify;
  margin: 0;
  font-size: 14px;
}

video {
  display: block;
  width: 92%;
  height: 90%;
  margin: 0 auto;
  text-align: center;
}

.gallery {
  background-color: #444;
  box-shadow: 0 0 2vw 0.1vw rgba(0, 0, 0, 0.8);
  display: flex;
  flex-flow: row wrap;
  max-width: 1800px;
  margin: 0 auto;
}
.gallery figure {
  flex: 1 1 200px;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
  box-shadow: 2px 3px 6px rgba(0, 0, 0, 0.4);
}
.gallery figure figcaption {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  text-align: right;
  padding: 0.2em 0.4em 0.2em;
  -webkit-transform: translateY(101%);
          transform: translateY(101%);
  transition: -webkit-transform 200ms ease-in-out;
  transition: transform 200ms ease-in-out;
  transition: transform 200ms ease-in-out, -webkit-transform 200ms ease-in-out;
}
.gallery figure:hover figcaption {
  -webkit-transform: translateY(0);
          transform: translateY(0);
}
.gallery figure img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
      object-fit: cover;
  display: block;
  -webkit-transform: scale(1);
          transform: scale(1);
  transition: all 180ms ease-in;
}
.gallery figure:hover img {
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
  -webkit-filter: blur(4px) brightness(0.3);
          filter: blur(4px) brightness(0.3);
}

@media screen and (min-width: 400px) {
  .gallery {
    padding: 0.5vw;
  }
  .gallery figure {
    margin: 0.5vw;
  }
}
@media screen and (min-width: 900px) {
  .gallery figure {
    flex: 1 1 300px;
  }
}
@media screen and (min-width: 1600px) {
  .gallery figure {
    flex: 1 1 400px;
  }
}
