/*
Theme Name: filmha

Adding support for languages written in a Right To Left (RTL) direction is easy -
it's just a matter of overwriting all the horizontal positioning attributes
of your CSS stylesheet in a separate stylesheet file named rtl.css.

https://codex.wordpress.org/Right-to-Left_Language_Support

*/

/*
body {
	direction: rtl;
	unicode-bidi: embed;
}
*/


.linktopost {
    text-align: center;
    margin: 25px 0;
}

.linktopost a {
    display: inline-block;
    padding: 10px 22px;
    background: #fff1f1;
    color: #e53935 !important;
    border: 1px solid #e53935;
    border-radius: 6px;
    text-decoration: none !important;
    font-size: 16px;
    line-height: 1.5;
}

.linktopost a:hover {
    background: #e53935;
    color: #fff !important;
}