* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    line-height: 1.3;
    color: #333;
    background-color: #d9effd;
}

header {
    text-align: center;
    padding: 50px 20px;
    background-color: #437e99;
    color: #fff;
}

header h1 {
    font-size: 3em;
    margin-bottom: 10px;
}

header p {
    font-size: 1.2em;
}

h1 {
    font-size: 2.5em;
    margin-bottom: 10px;
}

h2 {
    font-size: 1.8em;
    margin-bottom: 20px;
}

p {
    font-size: 1em;
}

label {
    font-size: 1em;
}

.justify-text {
	text-align: justify;
}

.about {
    padding: 50px 20px;
    text-align: center;
}

.contact {
    padding: 50px 20px;
    text-align: left;
}

.contact h2{
    text-align: center;
}

.input {
	padding:8px;
	display:block;
	border:none;
	border-bottom:1px solid #ccc;
	width:100%
}

.border {
	border:1px solid #ccc!important
}

.w3-button {
  border: none;
  display: inline-block;
  padding: 8px 16px;
  vertical-align: middle;
  overflow: hidden;
  text-decoration: none;
  color: #FFF !important;
  background-color: #333 !important;
  text-align: center;
  cursor: pointer;
  white-space: normal;
  width: 100%;
  font-size: 1.2em;
}

.w3-button:hover {
  color: #000 !important;
  background-color: #ccc !important;
}

.w3-block {
	display:block;
	width:100%
}

.container {
    max-width: 800px;
    margin: 0 auto;
}

.gallery {
    background-color: #fff;
    padding: 30px 20px;
    text-align: center;
}

.grid-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 20px;
    max-width: 800px; /* Optional: Limit the maximum width of the grid */
    margin: 0 auto; /* Center the grid horizontally */
}

.grid-item img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    transition: transform 0.2s;
    cursor: pointer;
}

.grid-item img:hover {
    transform: scale(1.05);
}

#lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    display: flex;
    justify-content: center;
    align-items: center;
}

#lightbox.hidden {
    display: none;
}

#lightbox-image {
    max-width: 90%;
    max-height: 90%;
    border-radius: 8px;
}

.close {
    position: absolute;
    top: 20px;
    right: 30px;
    color: #fff;
    font-size: 30px;
    font-weight: bold;
    cursor: pointer;
}

#lightbox2 {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    display: flex;
    justify-content: center;
    align-items: center;
	font-size: 2em;
    color: #fff;
    text-align: center;
}

#lightbox2.hidden {
    display: none;
}

#lightbox2-content {
    max-width: 90%;
    max-height: 90%;
    border-radius: 8px;
}

footer {
    text-align: center;
    padding: 20px 0;
    background-color: #437e99;
    color: #fff;
}