@import url(./blog2.css);
body{
    background-color: antiquewhite;
}
.layout{
    display: grid;
    grid-template-rows: 80px auto;
    grid-template-areas: 
    "header"
    "main"
    "footer";
}
.grid-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}  
.header-content {
    display: flex;
    align-items: center;
    grid-area: header;
    border: 2px ridge mediumorchid;
    justify-content: space-between;
    padding: 10px;
  }


main{
    border: 2px ridge mediumorchid;
    grid-area: main;
    display: flex;
    height: 100%;
}
footer{
    text-align: center ;
    border: 2px ridge mediumorchid;
    grid-area: footer;
}
figcaption {
    font-style: italic;
    color: #888;
    margin-top: 5px;
  }
  blockquote{
    background-color: mediumorchid;
        border-left: 5px solid#ccc;
        font-style: italic;
        margin: 0;
        padding: 5px;
  }