body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    padding-top: 130px;  /* Offset for fixed header height (10px padding + 110px img + 10px padding) */
    min-height: 85vh;  
    display: flex;
    flex-direction: column;  /* Stacks header, main, footer vertically */
}

main {
    padding: 20px;
    max-width: 60%;
    margin: auto;
    flex: 1;  /* Main takes up remaining space, pushing footer to bottom */
}

/* Leave header and footer rules as they are, e.g.: */
header {
    background-color: #b1dbeb;
    padding: 10px;
    display: flex;
    align-items: center;
    position: fixed;  /* Fixes header to top of screen on scroll */
    height: 100px; 
     
    top: 0;
    left: 0;
    right: 0;
    z-index: 10;
    font-weight: bolder;
    font-family: 'Bradley Hand ITC';
    font-size: x-large; 
}
header img { 
    height: 100px; 
    margin-right: 20px; 
}
nav { margin-left: auto; }
nav a { margin: 15px; text-decoration:solid; color: #333; }
footer {
    height: 7vh; 
    display: flex; 
    align-items: center;
    justify-content: center;
    background-color: #b1dbeb;
    padding: 10px;
    margin-top: 20px;
}
footer img { height: 70px; margin: 0 10px; }
.gallery { display: flex; flex-wrap: wrap; justify-content: center; }
.gallery img { margin: 10px; max-width: 400px; height: auto; }
.bio{
    display: flex;
     align-items:
      flex-start;
       gap: 20px;
}
.bio img{
    width: 250px; 
    height: auto;
    border-radius: 10px;
}

@media (max-width: 768px) {
    header {
        display: flex;
        flex-direction: row;
        justify-content: flex-start;
        align-items: flex-start;
    }
    h1 {
        display: none;
    }
    nav {
        display: flex;
        flex-direction: column;
        margin-left: 10px;
    }
    nav a {
        margin: 2px 0;
        margin-left: 0;
    }
    .gallery img {
        max-width: 80vw;
    }
    .bio img{
        display: none;
    }
}

