.blog-container {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin: 1% auto 0 auto;
    max-width: 1200px;
}
.blog-item {
    width: 300px;
    height: 300px;
    text-align: center;
    overflow: hidden;
    display: flex;
    border-radius: 30px;
    flex-direction: column;
    justify-content: space-between;
    background-color: rgba(13, 19, 33, 100);
}
.blog-item img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    margin-bottom: 10px;
}
.blog-item h3 {
    font-size: 30px;
}
.blog-item p {
    font-size: 14px;
    color: #555;
    overflow: hidden;
    text-overflow: ellipsis;
    word-wrap: break-word;
}
.blog-item small {
    font-size: 12px;
    color: #777;
}
.login-logo {
    height: auto;
    width: 150px;
}