body{
    
    /* flexbox example 
    display: flex; /* Make the body a flex container */
    /*flex-direction: column; /* Stack children vertically */
    /*min-height: 100vh; /* Ensure the body is at least the full viewport height */
    /*margin: 0; /* Optional: Remove default body margin */
    
    display: grid; /* Make the body a grid container */
    grid-template-rows: auto 1fr auto; /* Define rows for header (auto), main (1fr), and footer (auto) */
    min-height: 100vh; /* Ensure the body is at least the full viewport height */
    margin: 0;

}

main{
    margin-left: 20px;
    margin-right: 20px;
    flex-grow: 1; /* This makes the main content area expand to fill the remaining space */

    /*background-color: #f2f2f2;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;*/
}

h1{
    text-align: center;
}

h2{
    text-align: center;
    font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
    font-size: 45px;
}

h3{
    text-align: left;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 25px;
}   

p{
    font-size: 20px;
    font-family: Arial, Helvetica, sans-serif;
    text-align: justify;
}



.navbar {
    background: #594848;
    width: 100%;
    overflow: auto;
/*    display: flex;
    justify-content: space-between;
    align-items: center;
    color: white;
    padding: 10px 20px; */
}

.navbar ul{
    list-style-type: none;
    background-color: gray;
    padding: 0px;
    margin: 0px;

    font-family: Arial, Helvetica, sans-serif; 
   overflow: hidden; /*add for horizontal navbar, remove for vertical navbar*/
}

/* This is for the horizontal navbar, if you want a vertical one, remove this code and the overflow: hidden; from the .navbar ul .*/

.navbar li{
    float: left;
}

.navbar a{
    color: white;
    text-decoration: none;
    padding: 15px;
    display: block;
    text-align: center;
    width: 75px;
    font-size: 17px;    
}

.navbar a:hover{
    background-color: rgb(66, 10, 156);
    font-weight: bold;
    color:yellow;
}

.header-title{
    position: sticky;
    top: 0px;
    bottom: 0px;
    padding: 0px 0px 50px;
    /*background: #555;*/
    background-color: #4a5776;
    color: #f1f1f1;
    text-align: center;
}

/*footer{
    padding: 10px;
    text-align: center;

    background-color: gray;
    color: white;
    /*position: fixed;*/
/*    bottom: 0px;
    left: 0px;
    width: 100%;
}*/

/*a:link, a:visited, a:hover, a:active {
  color: #000000; /* Replace with your desired color (e.g., black) */
  /*text-decoration: none; /* Optional: also removes the default underline */
 

footer p{
    padding-bottom: 20px; 
    /*background-color: #555;*/
    background-color: #4a5776;
    text-align: center;
    font-size: 15px;
/*    font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;*/
    font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
    color: white;
    padding-bottom: 5px;
    padding-top: 5px;
    text-decoration: none;

   
    /* Apply padding to the bottom of the footer */
    /* Other footer styles (background, color, etc.) */
    /*position: fixed;
    bottom: 0px;
    left: 0px;
    width: 100%;
    text-align: center;
    padding: 5px;
    font-size: 12px;
    font-weight: bold;
    background: #594848;
    color: white;
    font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
    letter-spacing: 1px;*/
}


.container{
    max-width: 1200px;
    margin: auto;
    background: #f2f2f2;
    overflow: auto;
    /* height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center; */
}   

.gallery{
    margin: 5px;
    border: 1px solid #ccc;
    float: left;
    width: 290px;
    /*display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    padding: 20px;*/
}   

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

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