*{
    margin: 0px;
    padding: 10px;
    box-sizing: border-box;
}

p{
    font-family: 'Roboto Mono';
    font-size: 16px;
    text-align: center;
}

h3 {
    font-family: 'Poppins';
    font-size: 60px;
    color: orange;
    text-align: center;
}

a{
    text-decoration: none;
}

ul{
    list-style: none;
}

body {
    margin: 0px;
    padding: 0px;
    font-family: 'Roboto Mono';
}

#blog {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    padding: 10px;
}

.blog-heading {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.blog-container {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 20px 0px;
    flex-wrap: wrap;
}

.blog-box {
    width: 250px;
    border: 1px solid grey;
    margin: 10px;
}

.blog-img {
    width: 100%;
    height: auto;
}


.blog-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.blog-text {
    text-align: center;
    padding: 5 px;
    display: flex;
    flex-direction: column;
    color: black;
}

.blog-text .blog-title {
    color: black;
}

.blog-text .blog-title:hover {
    color: cornflowerblue;
    transition: all ease 0.5s;
}