/* TEMP - see element borders easy for testing */
.layout-el, footer, nav {
    border-style: solid;
    margin: auto;
    background-color: #295d23b9;
}

p, h1, h2 {
    text-align: center;
}

body {
    background-color: rgb(87, 133, 69);
    background-image: url("background1.png");
    background-repeat: no-repeat;
    /*height: 100vh;*/
    background-size: cover;
    background-position: center center;
}

.main {
    max-width: 1600px;
    margin: 40px;
}

#title {
    font-size: 4rem;
    margin: 20px 10px 0px;
    color: #247533; /*#468150 */
    font-family: "Winky Rough", sans-serif;
    font-weight: 800;
    font-style: normal;
    font-optical-sizing: auto;
    text-shadow:  2px 2px 2px black, 0 0 1rem rgb(97, 172, 70);
}
#sub-title {
    font-size: 2rem;
    margin: 10px;
    margin-top: 0;
    font-family: "Nothing You Could Do", cursive;
    font-weight: 400;
    font-style: normal;
}

nav {
    background-color: #175422;
    color: beige;
}

.grid-layout {
    display: grid;
    grid-template-columns: 1fr 2fr 1fr;
    grid-template-areas: 
        'about blogFeed changelog'
        'status blogFeed todo';
}

.layout-el {
    box-sizing: border-box;
    width: 100%;
    height: 350px;
}

.el-header {
    box-sizing: border-box;
    width: 100%;
    margin: 0;
    padding: 5px 10px;
    font-size: 1.5rem;
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    background-color: #20662c;
    border-style: solid;
    border-color: #175422;
    text-align: left;
}


#blog-feed {
    grid-area: blogFeed;
    height: 100%;
}
#about {
    grid-area: about;
}
#changelog {
    grid-area: changelog;
}
#status {
    grid-area: status;
}
#todo {
    grid-area: todo;
}

footer {
    height: 150px;
}

/* Sizing cutoffs */
/* small devices - cascade grids etc. */
@media screen and (max-width:400px) {
    /* TODO */
}
/* large devices - center body */
@media screen and (min-width:1680px) {
    .main {margin: 40px auto;}
}