*{
    margin: 0;
    padding: 0;
}


body{
    font-family: "DM Sans", sans-serif;
    padding: 20px;
}

.logo{
    display: flex;
    align-items: center;
    gap: 14px;
}
.logo img{
    width: 28px;
    height: 28px;
    border-radius: 8px;
}
.logo span{
    font-size: 28px;
    font-weight: 700;
}

.logo {
    color: black;
    text-decoration: none;
}

.container{
    max-width: 1040px;
    margin: 1em auto;
}

header{
    margin-bottom: 2em;
}

article .prose{
    margin-top: 28px;
}

article{
    max-width: 580px;
    margin: 0 auto;
}

article p{
    margin: 8px 0;
    font-weight: 500;
    font-size: 18px;
}

article time{
    display: block;
}

article a{
    text-decoration: none;
}

article h1, article h2, article h3, article h4, article h5, article h6{
    margin: 16px 0;
}

article ul{
    margin-left: 48px !important;
    font-weight: 500;
    font-size: 18px;
}

article table td{
    padding: 4px;
}

header{
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.web-app-link{
    text-decoration: none;
    color: black;
    font-weight: 600;
    font-size: 20px;
}

.post-card{
    margin-bottom: 4em;
}

.post-card img{
    width: 100%;
}

.blog-index{
    margin: 4em 0;
}

.post-card a{
    color: black;
}


@media (max-width: 480px) {
    header .logo img{
        width: 28px;
        height: 28px;
    }
    header .logo span{
        font-size: 24px;
    }

}