/* gallery.css */

body {
	  display: flex;
	  flex-direction: column;
	  min-height: 100vh;
	  background-color: black;
	}
	
.password-form-container {
	  z-index: 2;
	  position: fixed;
	  top: 30%;
	  left: 50%;
	  transform: translate(-50%, -50%);
	  width: 350px;
	  background: linear-gradient(to right, #410b47 36.75%, #5a0606 72.16%) !important;
	  /*background-color: #4c0003;*/
	  padding: 5px;
	  border: 1px solid #ccc;
	  border-radius: 14px;
	  color: white;
	  font-size: 14px;
	  font-family: Arial, sans-serif;
	  }
	  
input[type="password"] {
      font-size: 14px; /* Change the font size to your desired size */
	}
	
input[type="submit"] {
	font-size: 14px; /* Change the font size to your desired size */
	}

.center-image {
	  display: block;
	  margin-left: auto;
	  margin-right: auto;
	  width: 200px;
	  height: auto;
	  margin-top: -100px; /* Add this line and adjust the value as needed to move the image up */
	  }

.box-text-password {
    width: 70%;
    margin: 0 auto;
    text-align: left; /* Change from center to left */
    font-size: 16px;
    font-family: Arial, sans-serif;
    color: #ffffff;
}

@font-face {
	  font-family: 'Dancing Script';
	  src: url('/fonts/DancingScript-VariableFont_wght.ttf');
	  }

	  
.box-text-password span {
	  font-weight: 400; /* change the font weight to your liking */
	  color: #f3f3f3; /* change the color to your liking */
	  font-family: Dancing Script, serif; /* change the font family to your liking */
	  font-size: 30px;
	  }

	  
input[type="password"] {
      font-size: 20px; /* Change the font size to your desired size */
	  }
	
input[type="submit"] {
	  font-size: 16px; /* Change the font size to your desired size */
	  }

main {
	  flex: 1;
	  padding-top: 350px; /* Adjust as needed */
	 }
	
.title-container {
	margin-bottom: 100px;
	}
	
.gallery-img {
  display: block;
  margin: auto;
  max-width: 100%; /* Set the maximum width of the image to the width of the container */
  height: auto; /* Maintain the aspect ratio of the image */
  margin-top: -200px; /* Add this line and adjust the value as needed to move the image up */
	}
	
.container-gal1 {
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-wrap: wrap;
	background-color: black;
	}

.container-gal1 img {
	display: block;
	max-width: 100%;
	margin: 10px;
	width: 200px;
	height: auto;
	}

.container-gal1 a {
	display: inline-block;
	position: relative;
	}

.container-gal1 a img {
	display: block;
	max-width: 100%;
	}

.container-gal1 .thumb-title {
	background-color: rgba(0, 0, 0, 0.5);
	color: #fff;
	font-size: 14px;
	width: 200px;
	height: 31px;
	text-align: center;
	padding: 0px;
	border-bottom: 0px solid #fff;
	}

.container-gal1 a:hover .thumb-title {
	bottom: 5px;
	}

.container-gal2 {
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-wrap: wrap;
	background-color: black;
	}

.container-gal2 img {
	display: block;
	max-width: 100%;
	margin: 10px;
	width: 200px;
	height: auto;
	}

.container-gal2 a {
	display: inline-block;
	position: relative;
	}

.container-gal2 a img {
	display: block;
	max-width: 100%;
	}

.container-gal2 .thumb-title {
	background-color: rgba(0, 0, 0, 0.5);
	color: #fff;
	font-size: 14px;
	width: 200px;
	height: 31px;
	text-align: center;
	padding: 0px;
	border-bottom: 0px solid #fff;
	}

.container-gal2 a:hover .thumb-title {
	bottom: 5px;
	}
.container-gal3 {
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-wrap: wrap;
	background-color: black;
	}

.container-gal3 img {
	display: block;
	max-width: 100%;
	margin: 10px;
	width: 200px;
	height: auto;
	}

.container-gal3 a {
	display: inline-block;
	position: relative;
	}

.container-gal3 a img {
	display: block;
	max-width: 100%;
	}

.container-gal3 .thumb-title {
	background-color: rgba(0, 0, 0, 0.5);
	color: #fff;
	font-size: 14px;
	width: 200px;
	height: 31px;
	text-align: center;
	padding: 0px;
	border-bottom: 0px solid #fff;
	}

.container-gal3 a:hover .thumb-title {
	bottom: 5px;
	}
	
.img-img {
	margin-top: 10px;
    padding: 50px;
    width: 340px;
    height: 509px;
}

/* Media query for smaller screens */
@media only screen and (max-width: 768px) {
  /* Hide the social icons */
  .social-icons {
	display: none;
	}
	
.password-form-container {
	z-index: 1;
	position: fixed;
	top: 30%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 300px;
	background: linear-gradient(to right, #410b47 36.75%, #5a0606 72.16%) !important;
	  /*background-color: #4c0003;*/
	padding: 10px;
	border: 1px solid #ccc;
	border-radius: 15px;
	color: white;
	font-size: 12px;
	font-family: Arial, sans-serif;
	}
	
input[type="password"] {
      font-size: 14px; /* Change the font size to your desired size */
	}
	
input[type="submit"] {
	font-size: 14px; /* Change the font size to your desired size */
	}
	.center-image {
	display: block;
	margin-left: auto;
	margin-right: auto;
	width: 200px;
	height: auto;
	}
	
.box-text-password {
	width: 70%;
	margin: 0 auto;
	text-align: center;
	font-size: 16px;
	font-family: Arial, sans-serif;
	color: #ffffff;
	}
	
@font-face {
	  font-family: 'Dancing Script';
	  src: url('/fonts/DancingScript-VariableFont_wght.ttf');
	  }

.box-text-password span {
	  font-weight: 400; /* change the font weight to your liking */
	  color: #f3f3f3; /* change the color to your liking */
	  font-family: Dancing Script, serif; /* change the font family to your liking */
	  font-size: 30px;
	  }
	
main {
	flex: 1;
	padding-top: 320px; /* Adjust as needed */
	}
	
.gallery-img {
	  display: block;
	  margin: auto;
	  max-width: 100%; /* Set the maximum width of the image to the width of the container */
	  height: auto; /* Maintain the aspect ratio of the image */
	  margin-top: -200px; /* Add this line and adjust the value as needed to move the image up */
	}
}