input, select{
    width: 7vw;
    margin: 0 1vw;
}

.post_div{
    display: none;
    flex-direction: column;
    justify-content: center;
}

.post_img1{
    width: 60vw;
    box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.418);
    margin-bottom: 3vh;
}

.info{
    color: var(--blue1);
}

.split{
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

/*computer*/
@media (min-width: 1000px){
    .post_div{
        align-items: center;
        justify-content: center;
    }

    .post_img1{
        width: 30vw;
    }

    .split{
        flex-direction: row;
        width: 100%;
        justify-content: space-evenly;
    }

    .split > div{
        width: 50%;
        margin: 0 1vw;
        text-align: center;
    }

    .info,.post_div>h2{
        text-align: center;
        padding-left: 2vw;
    }
}