body {
    display: flex;
    font-family: Verdana, sans-serif;
    justify-content: center;
    background-color: lightblue;
}
main{
    display: grid;
    grid-area: main;
}

.website {
    display: grid;
    grid-template-areas:
    "nav"
    "header"
    "main"
    "footer";
    grid-template-rows:  55px 250px fit-content 50px;
    width:850px;
    border: 3px solid #000000;
    height: fit-content;
}

.nav-top{
    text-align: center;
    display: grid;
    grid-area: nav;
    background-color: white;
}

header {
    display: grid;
    grid-area: header;
    background-color: white;
}

.main-body{
    display: flex;
    align-items: flex-start;
    background-color: #FFFFFF;
}

#leftside{
    display:flex;
    padding: 10px;
    flex-direction: column;
    gap: 5px;
    background-color: lightblue;
    
}
#leftside section {
    border: 2px black solid;
    width: 220px;
    background-color: white;
    padding: 5px;
}

#leftside h2{
    margin-block-start: 2px;
    margin-block-end: 2px;
}

#most-recent{
    height: 100px;
}
#photos{
    border: 2px black solid;
    height: 180px;   
}


#rightside{
    display: flex;
    width: 1fr;
    padding: 10px;
}


#blurb h1{
    margin-block-start: 2px;
    margin-block-end: 2px;
}
#blurb p{
    margin-block-start: 3px;
    font-size: 18px;
    width: 400px;
    
}
    
footer {
    display: grid;
    grid-area: footer; 
    justify-content: center;
    text-align: center;
    
}