body{
    background-color: #303030;
    background-image: url("/imgs/f0rest.jpg");
    background-attachment: fixed;
    background-size: cover;
}
main{
    grid-auto-rows: max-content;
    align-content: unset;
    grid-gap: 2.5rem;
    justify-content: unset;
}
header{
    padding: 2rem 0;
    height: auto;
}
main img{
    max-height: 225px;
    width: 100%;
    align-self: center;
}
h1{
    text-shadow: 0 0 1rem #000;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
    font-size: 4rem;
}
.gallery_container{
    display: grid;
    grid-gap: 4rem;
    padding: 0 10% 4rem 10%;
    grid-template-columns: repeat(auto-fit, 300px);
    justify-content: center;
}
.gallery_tile{
    display: grid;
    justify-content: center;
}


.gallery_overlay{
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: calc(100vh);
	display: flex;
	align-items: center;
	background-color: #000C;
	z-index: 100;
}
#owl-carousel{
    width: 100vw;
}
#owl-carousel .owl-item img{
  max-width: 80vw;
  max-height: 80vh;
  width: unset;
  object-fit: contain;
  object-position: center;
  display: block;
}
.owl_img_inner{
  display: flex;
  justify-content: center;
  width: 100vw;
  align-items: center;
  height: 80vh;
}
.gallery_close {
	cursor: pointer;
	position: fixed;
	top: 15px;
	right: 15px;
  z-index: 110;
}
.gallery_btn {
	color: #bbb;
	font-size: 1.5rem;
	font-family: 'Roboto', sans-serif;
	width: 50px;
	height: 50px;
	background-color: #303030;
	border-radius: 25px;
	display: flex;
	justify-content: center;
	align-items: center;
	box-shadow: 0 0 1rem #0007;
}
.gallery_btn .close_icon {
	width: 32px;
	height: 32px;
	background-image: url('/imgs/delete.png');
	background-repeat: no-repeat;
	background-position: 55% center;
	background-size: 25px 25px;
}
.goi .owl-prev, .goi .owl-next{
  cursor: pointer;
	position: fixed;
	top: 50%;
  transform: translateY(-50%);
	left: 15px;
  z-index: 110;
}
.goi .owl-next{
  left: unset;
  right: 15px;
}
.owl-prev > *{
    background-image: url('/imgs/leftArrow.png');
    background-repeat: no-repeat;
    background-position: 45% center;
    background-size: 25px 25px;
    cursor: pointer;
  }
  .owl-next > *{
    background-image: url('/imgs/rightArrow.png');
    background-repeat: no-repeat;
    background-position: 50% center;
    background-size: 25px 25px;
    cursor: pointer;
  }
  .gallery_btn .close_icon{
    width: 32px;
    height: 32px;
    background-image: url('/imgs/delete.png');
    background-repeat: no-repeat;
    background-position: 55% center;
    background-size: 25px 25px;
  }
  .owl-item{
      display: grid;
      justify-content: center;
      height: 80vh;
      align-content: center;
  }
@media screen and (max-width: 800px) {
    footer{
        grid-template-columns: 1fr;
        grid-gap: 1rem;
        padding: 1rem;
        height: auto;
    }
}
@media screen and (max-width: 400px) {
    .gallery_container{
        padding: 1.5rem;
        grid-template-columns: 1fr;
        grid-gap: 1.5rem;
    }
    main{
        grid-gap: unset;
    }
    main img{
        width: 100%;
        height: unset;
        min-height: unset;
        max-height: unset;
    }
    .slider_overlay{
        grid-template-columns: 100px 1fr 100px;
    }
    .owl-item {
        display: grid;
        justify-content: center;
        height: 80vh;
        align-content: center;
    }
    #owl-carousel .owl-item img{
        max-width: 100%;
    }
    .owl-prev, .owl-next{
        visibility: hidden;
    }
}