@import url("https://fonts.googleapis.com/css2?family=Caveat+Brush&family=Caveat:wght@400;500;600;700&family=Poiret+One&display=swap");

.header {
  height: auto;
  width: 100%;
  border-radius: 0 0 72% 72% / 25%;
  background-image: url("https://littleartsydreams.com/copy_metal.jpg?bypass-cache=09629320"); /*header tree picture*/
  background-size: cover;
  background-attachment: fixed;
  background-position: center;
  text-align: center;
  overflow: hidden;
}
.header .overlay {
  width: 100%;
  padding: 5rem;
  padding-bottom: 0;
  font-weight: bold;
  background-image: linear-gradient(
    135deg,
    rgb(14 116 242) 10%,
    rgb(55 68 114 / 90%) 100%
  );
}
.overlay h1 {
  font-family: Arial, "Helvetica Neue", Helvetica, sans-serif;
  font-weight: 900;
}
/*header paragraph text*/
.header .overlay p {
  padding: 1rem;
  letter-spacing: 0.14rem;
  font-size: 20px;
  border-radius: 50px;
  color: white;
}
.overlay button {
  width: 100%;
  bottom: 0;
  padding: 1rem;
  outline: none;
  border: none;
  background-color: transparent;
}
.overlay button a {
  height: 100%;
  width: 100%;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 1rem;
  position: relative;
  border-radius: 50px;
  font-size: 30px;
  text-decoration: none;
  letter-spacing: 0.14rem;
  color: white;
}

/**/

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

body {
  font-family: Raleway;
}

.heading {
  text-align: center;
  font-size: 2em;
  letter-spacing: 1px;
  padding: 40px;
  color: white;
}

.gallery-image {
  padding: 20px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.gallery-image img {
  height: 250px;
  width: 350px;
  transform: scale(1);
  transition: transform 0.4s ease;
}

.img-box {
  box-sizing: content-box;
  margin: 10px;
  height: 250px;
  width: 350px;
  overflow: hidden;
  display: inline-block;
  color: white;
  position: relative;
  background-color: white;
}

.caption {
  position: absolute;
  bottom: 5px;
  left: 20px;
  opacity: 0;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.transparent-box {
  height: 250px;
  width: 350px;
  background-color: rgba(0, 0, 0, 0);
  position: absolute;
  top: 0;
  left: 0;
  transition: background-color 0.3s ease;
}

.img-box:hover img {
  transform: scale(1.1);
}

.img-box:hover .transparent-box {
  background-color: rgba(0, 0, 0, 0.5);
}

.img-box:hover .caption {
  transform: translateY(-20px);
  opacity: 1;
}

.img-box:hover {
  cursor: pointer;
}

.caption > p:nth-child(2) {
  font-size: 0.8em;
}

.opacity-low {
  opacity: 0.5;
}

h1 {
  font-family: Satisfy;
  font-size: 50px;
  text-align: center;
  color: black;
  padding: 1%;
}
#gallery {
  -webkit-column-count: 4;
  -moz-column-count: 4;
  column-count: 4;

  -webkit-column-gap: 20px;
  -moz-column-gap: 20px;
  column-gap: 20px;
}
@media (max-width: 1200px) {
  #gallery {
    -webkit-column-count: 3;
    -moz-column-count: 3;
    column-count: 3;

    -webkit-column-gap: 20px;
    -moz-column-gap: 20px;
    column-gap: 20px;
  }
}
@media (max-width: 800px) {
  #gallery {
    -webkit-column-count: 2;
    -moz-column-count: 2;
    column-count: 2;

    -webkit-column-gap: 20px;
    -moz-column-gap: 20px;
    column-gap: 20px;
  }
}
@media (max-width: 600px) {
  #gallery {
    -webkit-column-count: 1;
    -moz-column-count: 1;
    column-count: 1;
  }
}
#gallery img,
#gallery video {
  width: 100%;
  height: auto;
  margin: 4% auto;
  box-shadow: -3px 5px 15px #000;
  cursor: pointer;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}
.modal-img,
.model-vid {
  width: 100%;
  height: auto;
}
.modal-body {
  padding: 0px;
}

/* */
