.mid{
    width: 30%;
    margin: 1% 1%;
    background-color: rgb(161, 128, 192);
    border-radius: 5px;
    padding: 10px;
}
.content{
    display: flex;
    margin: 0 auto;
    justify-content: center;
    background-color: rgb(200, 245, 194);
}
.mid p{
    font-size: 18px;

}
.mids{
    display: flex;
    flex-flow: column;
    align-items: center;
    justify-content: center;
    width: 25%;
    margin: 1% 1%;
    background-color: rgb(161, 128, 192);
    border-radius: 5px;
    padding: 10px;
}
.uim{
    width: 90%;
    height: auto;
    margin: 1px;
    border:1px solid brown;
    border-radius: 2px;
}
@media only screen and (max-width:768px){
    .content{
        flex-direction: column;
        align-items: center;
    }
    .mids{
        width: 80%;
    }
    .mid{
        width: 80%;
    }
    
}