.blogs{
    display: flex;
    flex-direction: column;
    background-color: #333; 
    color: white; 
    min-height: 100vh;
    width: 100%;
    padding: 20px;
    margin-top: 7vh;
}

.blog-box{
    margin: 2% auto;
    width: 80%;
    padding: 2%; 
    background-color: #1c1c1c; 
    color: #f1f1f1; 
    border-radius: 20px; 
    box-shadow: 0 0px 25px rgba(255, 255, 255, 0.2); 
}
input[type="file"] {
    display: block; 
    font-size: 16px; 
    padding: 0.3rem; 
    border: 1px solid #ccc; 
    border-radius: 5px; 
    cursor: pointer; 
}



.title{
    color: #f1f1f1; 
    align-self: center; 
}

.blog-line{
    width: 60%;
    align-self: center;
}

@media (max-width: 768px) {
    .blogs{
        display: flex;
        flex-direction: column;
        background-color: #333; 
        color: white; 
        min-height: 100vh;
        width: 100%;
        padding: 20px;
        margin-top: 5vh;
    }

    .blog-box{
        margin: 2% auto;
        width: 95%;
        padding: 5%; 
        background-color: #1c1c1c; 
        color: #f1f1f1; 
        border-radius: 20px; 
        box-shadow: 0 0px 25px rgba(255, 255, 255, 0.2);
    }

    .upload-content {
        display: flex; 
        flex-direction: column; 
        justify-content: center; 
        align-items: center; 
        text-align: center; 
    }


    .upload-content form {
        display: flex;
        flex-direction: column; 
        align-items: center; 
    }

    input[type="file"] {
        display: block; 
        font-size: 16px; 
        padding: 0.3rem; 
        border: 1px solid #ccc; 
        border-radius: 5px; 
        cursor: pointer; 
        width: 90%;
    }

    .title{
        justify-self: center;
        text-align: center;
    }



}