*{
    margin: 0;
    padding: 0;
    list-style: none;
    text-decoration: none;
}

.header{
    width: 100%;
    height: 80px;
    display: block; 
    background-color: white;
    position: fixed;
    top: 0;
    z-index: 1000;
} 

.inner_header {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center; /* Vertically center children */
    background-color: white;
    margin: 0 auto;
    justify-content: center;
}

.logo_container {
    height: 100%;
    display: flex;
    align-items: center; /* Vertically center logo */
    float: left;
} 

.logo_container h1{
    height: 100%;
    display: table-cell; 
    color: black ;
    vertical-align: middle;
    font-weight: 100;
} 

.logo_container h1 span{
   font-weight: 800;
} 

.logo_container h1 img {
    height: 2.1em;  
    vertical-align: middle;
}

.logo_container h1:hover{
    color: gray;
}

.main{
    width: 100%;
    padding-top: 80px;
    background: url(mountain_homepage.jpg);
    background-position: center;
    background-size: cover;
    height: 100vh;
}

.navigation{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 10px; 
    padding-top: 20px;
    width: 100%;
}

.navigation a {
    height: auto;      
    display: block;     
    float: none;       
    padding: 0px 10px; 
}

.navigation a:last-child{
    padding-right: 0; 
}

.navigation a li {
    display: block;
    height: auto;
    color: white;
    font-size: 20px;
}

.navigation a li:hover {
    color: rgb(77, 133, 189);
}

.photos {
    width: 100vw; /* Adjusted for full width if desired */
    height: 100vh;
    display: flex; /* Changed from block to flex for horizontal layout */
    background-color: white;
    position: relative;
}

.photos img {
    flex: 1; /* Allows image to take available space */
    height: 100%;
    object-fit: cover;
    display: block;
}

.caption {
    flex: 1; 
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* about page */

.about_content {
    text-align: center;    
    padding: 180px 20px;  
    max-width: 700px;     
    margin: 0 auto;      
}

.about_content a {
    color: black;
}

.about_content a:hover  {
    color: green;
}

.portrait {
    width: 500px;        
    display: block;
    margin: 0 auto 30px;   
}

/*blog nav page*/ 

.post_list,
.post_list a,
.post_list .entry,
.post_list .date,
.post_list .content,
.post_list .title,
.post_list .subtitle {
    color: black;
}

.post_list a {
    text-decoration: none;
}

.list_container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: calc(100vh -80px);
    margin-top: 120px;
}

.entry {
    display: grid;
    grid-template-columns: 120px 1fr;
    align-items: center;
    gap: 1rem; 
    font-family: 'Courier New', Courier, monospace;
    border-bottom: 0.5px solid #e0e0e0; 
    padding: 0.85rem 0; 
}

.date {
    text-align: left;
}

.content {
    display: flex;
    flex-direction: column;
}