* {
    box-sizing: border-box;
}

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

.header {
    height: 200px;
    width: 100%;
    position: fixed;
    z-index: 2;
    padding: 16px;
    top: 0;
    left: 0;
    background-image: linear-gradient(to bottom right, #007FFF, #B0E0E6);
    text-align: center;
    color: black;
    border-style: none none double none
}

.header h3 {
    margin: 0;
    font-size: clamp(20px, 5vw, 48px);
}

.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;             
}

.sidenav {
    height: 100%;
    width: 12%;
    position: fixed;
    top: 200px; 
    left: 0;
    background-image: linear-gradient(to right,#FFA500,#F0E68C);
    overflow-x: hidden;
    padding-top: 20px;
}


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

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

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

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

.dropdown:hover .dropdown-content {
    display: block;
}

.content {
    margin-left: 24%; 
    width: 70%;
    padding: 200px 50px 0 50px; 
    position: relative;
    background-color: white;
    transform: translate(-12%,0);
}

.content p{
    color: black;
    text-decoration: none;
    size: 15pt;

}

.content h3{
    color: black;
    text-decoration: none;
    size: 100pt !important;
}

.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
}

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

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

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

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



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