* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: Helvetica, sans-serif;
}

.header {
    height: 300px;
    width: 100%;
    padding: 40px 0 0 0;
    top: 70px;
    left: 0;
    background-image: linear-gradient(to bottom right, #007FFF, #B0E0E6);
    background-color: #007FFF;
    text-align: center;
    color: black;
    font-family: Arial, sans-serif;
    -webkit-text-stroke-width: 1px;
    -webkit-text-stroke-color: black;
    text-shadow: 2px 2px black;
    border-style: none none double none;
    z-index: 100;
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-position: center;
    background-position: top;
}

.header h1{
    margin: 0;
    font-size: 50px;
    font-weight: bold;
    color: white;
}

.header h2{
    margin: 0;
    font-size: 30px;
    font-weight: bold;
    color: white;
}

.header-box {
    background-color:#FF6347;
    color:white;
    border-radius: 25px;
    padding: 25px;
    width: 400px;
    height: 170px;
    border-style: double;
    display: flex;              
    align-items: center;        
    justify-content: center;    
    margin: 0 auto;             
}

.topnav {
    height: 70px;
    width: 100%;
    position: sticky;
    display: flex;
    overflow: visible;
    top: 0; 
    left: 0;
    background-image: linear-gradient(to right,#FFA500,#F0E68C);
    z-index: 1000;
}

.right {
    display: flex;
    justify-content: flex-end;
    margin-right: 0;
    margin-left: auto;
    padding: 10px 0 0 0;
}

.left {
    display: block;
    padding: 0 0 0 50px;
}

.topnav a {
    color: black;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
}

.topnav a:hover {
    background-color: #ddd;
    color: black;
}

.dropdown {
    display: inline-block;
    position: relative;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: #FFA500;
    min-width: 120px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    padding: 12px 16px;
    z-index: 1200;
}

.dropdown:hover .dropdown-content {
    display: block;
    z-index: 1400;
}




.content {
    padding: 50px 50px 0 50px; 
    background-color: white;
    clear: both;
    max-width: 80%;
    transform: translate(10%,0);
}

.center-content {
    padding: 50px 50px 0 50px; 
    background-color: white;
    display: block;
    clear: both;
}

.right-img {
    float: right;
    margin: 10px 0 10px 20px;
    max-width: 40%;
}

.left-img {
    float: left;
    margin: 10px 20px 10px 0;
    max-width: 40%;
}

.photo{
    background-color: #B0E0E6;
    border: 2px solid black;
    max-width: 1000px;
}

.photo img {
    width: 100%;
    height: auto;
}

.desc {
  padding: 15px;
  text-align: center;
}

.content p{
    color: black;
    text-decoration: none;
    font-size: 16px;
    display: block;
    padding-right: 15px;

}

.content h3{
    color: black;
    text-decoration: none;
    font-size: 25px;
    min-width: 400px;
    height: 50px;
    display: block;
}


.content h4{
    color: black;
    text-decoration: none;
    font-size: 25px;
    width: 80%;
    height: 50px;
    display: block;
    text-align: center;
    transform: translate(10%,0);
}

.responsive {
    width: 100%;
    max-width: 500px;
    height: auto;
    border-radius: 8px;
}

.responsive2 {
    width: 100%;
    max-width: 1500px;
    height: auto;
    justify-content: center;
}

.gallery{
    background-color: #B0E0E6;
    border: 2px solid gray;
    display: flex;
    gap: 20px;
    display: block; 
    width: 100%;
    justify-content: center;
    clear: both;
}



div.gallery:hover {
  border: 2px solid black;
}

.gallery img {
    width: 100%;
    height: auto;
    display: flex;
}


.gallery-section {
    display: flex;
    flex-wrap: wrap;
    gap: 20px; 
    justify-content: center;
    clear: both;
}




.center_content::after {
    content: "";
    display: block;
    clear: both;
}

.left-img::after {
    content: "";
    display: block;
    clear: both;
}

.right-img::after {
    content: "";
    display: block;
    clear: both;
}

.footer {
    text-align: center;
    padding: 50px 0 20px 0;
}


