.card{
    border-top: 1px solid rgba(0,0,0,0.1);
    padding: 40px 0;
    display: flex;
    position: relative;
}
.timestamp{
    position: absolute;
}
.card img{
    border: 1px solid red;
    width: 200px;
    height: 200px;
}
.card p, .card h1{
    width: 600px;
}
.buttons{
    margin-top: 30px
}
button{
    color: black !important;
    
}
form .card{
    justify-content: space-between;
}
.card label{
    display: inline-block;
    width: 100%;
    margin-top: 10px;
}
.card textarea{
    width: 450px;
    height: 100px;
}
.deleteSvg{
    position: absolute;
    width: 20px;
    height: 20px;
    color: red;
    cursor: pointer;
    right: 0;
}


@media (max-width: 700px){
    .card{
        padding-left: 5vw;
        flex-direction: column;
        img, .text, .text *{
            max-width: 90vw;
        }
    }
    
}