h1 {
    font-size: 3.0rem;
    margin-bottom: 1rem;
}

body {
    display: absolute;
    margin-top: 80px;
    padding-left: 1rem;
    padding-right: 1rem;
    }

img {
    display: block;
    margin-left: auto;
    margin-right: auto;
    max-width: 100%;
    height: auto;
    border-radius: 10px;
}

#blog-post li {
    list-style-type: none;
    margin-bottom: 1rem;
}

blog-post ul {
    padding: 0px;
}

#blog-post img {
    height:9em;
     display: inline;
}

.card {
    background-color: rgb(248, 247, 247);
    border-radius: 10px;
    text-align: center;
    padding: 2rem;
    border: 0;
}

a {
    color: blue;
    text-decoration: none;
}

/* Make h1 smaller on mobile devices */
@media (max-width: 900px) {
    h1 {
        font-size: 2rem;
    }
}

/* Apply large left/right padding only on screens wider than 900px */
@media (min-width: 900px) {
   body {
        padding-left: 28rem;
        padding-right: 28rem;
    }
}