@media (min-width: 700px) {
.content{
    width: 95%;
    height: 85vh;
    margin: auto;
    margin-top: 5rem;
    background-color:rgba(72,72,72,0.4);

	padding-top:0px;
	position: fixed;
    right: 0px;
    left: 0px;
	overflow-y: scroll hidden;
    border-radius: 7px;
    display: inline-flex;
    text-align: justify;
}
.clickable{
    width: 30%;
    height: 90%;
    margin: auto;
}
.crudable{
    width: 62%;
    height: 90%;
    margin: auto;
    border-radius: 7px;
    overflow: hidden;
    overflow-y: scroll;
}
.e_post{
    width: 98%;
    background-color: rgba(255, 255, 255, 0.185);
    border-radius: 7px;
    padding: .5rem;
    margin-bottom: 1rem;
    position: relative;
}
.crud_div{
    position: absolute;
    right: .5rem;
    top: 1.4rem;
}
.title{
    color: white;
    font-size: 14px;
}
.crud_span{
    color: white;
    margin: .5rem;
    font-weight: 900;
    cursor: pointer;
}
.crud_span:hover{
    transition-duration: .5s;
    text-decoration: underline white 2px;
}
.click_btn{
    width: 100%;
    height: 45%;
    display: inline-table;
    background-color: rgba(255, 255, 255, 0.185);
    border: none;
    border-radius: 7px;
    margin-top: .7rem;
    margin-bottom: .7rem;
    font-size: 42px;
    font-weight: 10;
    color: white;
    cursor: pointer;
}
}

@media (max-width: 699px) {
    .content{
        width: 95%;
        height: 85vh;
        margin: auto;
        margin-top: 5rem;
        background-color:rgba(72,72,72,0.4);
    
        padding-top:0px;
        position: fixed;
        right: 0px;
        left: 0px;
        overflow-y: scroll hidden;
        border-radius: 7px;
        text-align: justify;
    }
    .clickable{
        width: 100%;
        height: 4rem;
        margin: auto;
        text-align: center;
    }
    .crudable{
        width: 97%;
        height: 87%;
        margin: auto;
        border-radius: 7px;
        overflow: hidden;
        overflow-y: scroll;
    }
    .e_post{
        width: 100%;
        background-color: rgba(255, 255, 255, 0.185);
        border-radius: 7px;
        padding: .5rem;
        margin-bottom: 1rem;
        position: relative;
    }
    .crud_div{
        position: absolute;
        right: .5rem;
        bottom: .4rem;
    }
    .title{
        color: white;
        font-size: 12px;
    }
    .crud_span{
        color: white;
        margin: .5rem;
        font-weight: 600;
        cursor: pointer;
        font-size: 14px;
    }
    .crud_span:hover{
        transition-duration: .5s;
        text-decoration: underline white 2px;
    }
    .click_btn{
        width: 48%;
        height: 2rem;
        background-color: rgba(255, 255, 255, 0.185);
        border: none;
        border-radius: 7px;
        margin-top: .7rem;
        margin-bottom: .7rem;
        font-size: 14px;
        font-weight: 10;
        color: white;
        cursor: pointer;
    }
    }