#blogs {
    width: 100%;
    background-color: white;
}
#blogs > nav {
    width: 100%;
    background: linear-gradient(105deg, #312D8A 0%, #252263 100%);
    height: 200px;
    text-align: center;
    padding-top: 40px;
    padding-bottom: 30px;
}
#blogs > nav > p {
    width: 100%;
    height: 30px;
    line-height: 30px;
    color: #fff;
}
#blogs > nav > p > a {
    font-size: 20px;
    color: #fff;
    text-decoration: none;
}
#blogs > nav > h1 {
    width: 100%;
    height: 100px;
    line-height: 100px;
    font-size: 50px;
    font-weight: bold;
    color: #fff;
}
#blogs > div {
    overflow: hidden;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 40px;
    margin: 40px auto;
}
@media screen and (min-width: 1341px) {
    #blogs > div {
        width: 1320px;
        justify-content: start;
    }
}
@media screen and (max-width: 1340px) and (min-width: 661px) {
    #blogs > div {
        width: 640px;
        justify-content: start;
    }
}
@media screen and (max-width: 660px) {
    #blogs > div {
        width: 90%;
        justify-content: center;
    }
}
#blogs > div > nav {
    width: 300px;
    box-shadow: 0px 0px 5px #F0F4F9;
    border: 1px solid #F0F4F9;
    border-radius: 10px;
    overflow: hidden;
}
#blogs > div > nav > a {
    text-decoration: none;
    display: block;
    width: 100%;
    height: 100%;
    padding-bottom: 15px;
}
#blogs > div > nav > a > div {
    width: 100%;
    height: 200px;
    text-align: center;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}
#blogs > div > nav > a > h1 {
    width: 100%;
    height: 50px;
    font-weight: bold;
    line-height: 25px;
    font-size: 20px;
    color: #252263;
    margin-top: 15px;
    padding: 0px 20px;
    overflow: hidden;
}