@import url("https://fonts.googleapis.com/css2?family=Mansalva&display=swap");


body{
    padding-bottom: 0px !important;
}


.footer-default__head
.logo img{
    
    width:400px;
}



h1 {
  font-family: Mansalva, Arial;
  font-size: 8rem;
  line-height: 2rem;
  color: tomato;
  text-shadow: 0px 0px 10px white, 0px 0px 30px navajowhite;
}

/* gallery specific CSS */

.-fx-image-gal {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  width: 100%; /* arbitrary valye */
  margin: 0px auto;
  margin-top:15px;
}
.-fx-gal-item {
  width: 20%; /* for 3 columns */
  margin: 10px;
  overflow: hidden;
  border-radius: 15px;
}

.-fx-gal-image-thumb img {
  width: 100%;
  border-radius: 15px;
  cursor: pointer;
  -webkit-filter: grayscale(80%);
  -moz-filter: grayscale(80%);
  filter: grayscale(80%);
  transition: all 0.3s ease;
  height: 210px;
}

.-fx-gal-image-thumb:hover img {
  width: 100%;
  cursor: pointer;
  -webkit-filter: grayscale(0%);
  -moz-filter: grayscale(0%);
  filter: grayscale(0%);

  transform: scale(1.2);
  transition: all 0.5s ease;
}

.-fx-gal-image-thumb:focus + .-fx-gal-image-big {
  display: block;
}

.-fx-gal-image-big {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  background-color: rgba(5, 10, 15, 0.8);
  overflow: hidden;
  height: 100vh;
  width: 100vw;
  z-index: 999;
  margin-top:45;
  transition: all 0.3s ease;
}

.-fx-gal-image-big img {
  max-width: 90vw;
  position: absolute;
  box-shadow: 0px 0px 800px 40px rgba(0, 0, 0, 0.9);
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}


.heading-smallest {
    font-size: 28px;
    text-transform: uppercase;
    font-weight: 500;
    margin-left: 50px;
}

@media (max-width:780px){
    .-fx-gal-item {
    width: 30%;
    margin: 10px;
    overflow: hidden;
    border-radius: 15px;
}
}



@media (max-width:565px){
    .-fx-gal-item {
    width: 75%;
    margin: 10px;
    overflow: hidden;
    border-radius: 15px;
}
}