@font-face {
    font-family: 'Font-Regular';
    src: url('../fonts/Parastoo-Regular.ttf') format('truetype');
    font-weight: light;
    font-style: normal;
}
@font-face {
    font-family: 'Font-Bold';
    src: url('../fonts/Parastoo-Bold.ttf') format('truetype');
    font-weight: light;
    font-style: normal;
}
@font-face {
    font-family: 'IBM-Bold';
    src: url('../fonts/IBM-Bold.ttf') format('truetype');
    font-weight: light;
    font-style: normal;
}
@font-face {
    font-family: 'IBM-Regular';
    src: url('../fonts/IBM-Regular.ttf') format('truetype');
    font-weight: light;
    font-style: normal;
}
/* Apply the font to your elements */
* {
    font-family: 'IBM-Regular', Arial, sans-serif;
    padding: 0;
    margin: 0;
}
html {
    height: 100%;
}
body {
    margin: 0;
    direction: rtl;
    background-color: #FFFFFF;
    min-height: 100%;
    display: flex;
    flex-direction: column;
}
.page-container {
    flex: 1;
    display: flex;
    flex-direction: column;
}
#content {
    flex: 1;
}
a, button {
    text-decoration: none;
    color: #090842;
}
/* General Reset */
body, h1, h2, h3, p, ul, li, button {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    color: #090842;
}
p {
    color: #555;
}
