img {
    width: 35px;
    height: 35px;
    border-radius: 30px;
    border: 2px solid hsla(0, 0%, 100%, 0.633);
}

footer {
    display: flex;
    justify-content: center;
    margin: 30px;
}
p {
    margin: 0;
    line-height: 23px;
}

body {
    background: hsl(214, 17%, 92%);
    padding: 8rem;
    width: fit-content;
    height: fit-content;
    display: grid;
    grid-template-rows: 1fr 80px;
}

.grid-blog {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.grid {
    display: grid;
    grid-template-rows: 1fr 1fr;
    gap: 2rem;
}

.grid-1-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    
}

.grid-3-4 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

@media (max-width : 450px) {
    body {
        padding: 2rem;
        width: 365px;
        height: fit-content;
    }
    .grid-blog {
        display: block;
    }
    .grid {
        display: block;
    }
    .grid-1-2 {
        display: block;
    }
    .grid-3-4 {
        display: block;
    }
    .grid-5 {
        display: block;
    }
    footer {
        font-size: 60%;
        display: flex;
        justify-content: center;
        align-items: center;
    }
}