body {
    font-family: "JetBrains Mono", monospace;
    font-size: 10px;
    letter-spacing: 1px;
    background-color: #f4f4ea; 
    height: fit-content;
    
}

p {
    font-size: 16px;
    text-indent: 10px;
    padding: 5px;
    margin: 20px;
}

header { 

    border: solid rgb(255, 54, 191) 1px;
    height: fit-content;
    background-color:rgb(255, 54, 208);

    font-family: "Jacquarda Bastarda 9", serif;
    font-size: 20px;
    color: #F8F7F2; 
    text-align: left;
    
}

header p {
    font-family: "Jacquard 12", serif;
    margin-top: 0;
    font-size: 20px;
}

#subheader {
    font-family: "Jacquard 12", serif;
    font-size: 40px;
    text-align: center;

    color:rgb(255, 54, 218);
    margin: 10px;
}

#subheader p {
    margin: 10px;
}

main {
    display: flex;
    flex-direction: column;
    /* flex-wrap:nowrap; */

    align-items: center;
}

.post {

    display: flex;
    flex-direction: column;
    align-items: center;
    border: dashed rgb(250, 12, 186) 1px;
    margin: 15px 10px 5px 10px;
    background-color: rgb(249, 248, 237);
    
}

.post img {
    width: 200px;
    height: 200px;
        /* ALL images will be: 335px w, 140px h */
}

.post p a {
    font-style: italic;
    color: rgb(252, 25, 157);

}

.post h3 {
    font-family: "Jacquarda Bastarda 9", serif;
    font-size: 30px;
    color:rgb(255, 54, 205);
    margin: 10px;
    padding: 5px;

}

.post h3:hover {
    color: blue;
}

aside {

    display: flex;
    flex-direction: column;

    padding: 10px;
    margin: 10px;

    background-color:#ff10bf;

    text-indent: 5px;
    align-items: center;
}

aside a {

    text-indent: 0;

    display: block;
    background-color: white;
    padding: 5px;
    border-radius: 5px;

}

footer {
    
    font-family: "Jacquarda Bastarda 9", serif;
    font-style: italic;
    text-align: center;
    color:rgb(255, 54, 165);
    padding: 5px;
    
}



 @media only screen and (min-width: 600px) {

    header { 

        font-size: 30px;
        color: #F8F7F2; 
        text-align: left;
        text-indent: 10px;
 
    }

    #subheader {

    font-size: 5em;
    text-align: left;
    text-indent: 10px;

}


    main {
        width: auto;
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;    
}

/*.post {*/

/*        display: flex;*/
/*        flex-direction: row;*/
/*        flex: 1;*/
/*        justify-items: center;*/

/*}*/

/*.post:hover {*/
/*    transition: 300ms ease-in;*/
/*    transform: translateY(-10px);*/
/*    transition: 300ms ease-in;*/
/*    box-shadow: 0px 5px 5px #ee279199;;*/
/*}*/

/*aside {*/
/*    flex: 1;*/
/*}*/

    footer {
        padding: 15px;
    }
 }