@font-face {
    font-family: "maian";
    src: url('../font/maian.ttf') format('truetype');
}

@font-face {
    font-family: "SourceSansPro";
    src: url('../font/SourceSansPro.otf') format('opentype');
}



html,
body {
    font-family: "SourceSansPro";
    margin: 0;
    padding: 0;
    font-size: 16px;
    word-break: break-all;
    line-height: 1.5;
    color: #000000;
    text-align: center;
    background: #ffffff;
    animation: background-fade 8s; 
}

*,
*:before,
*:after {
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

/* -- Page, Section Styles -- */

#page {
    height: 100%;
}

.section-content {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 90%;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.entry-content {
    border: 1px solid #000000;
    border-right: transparent;
    border-left: transparent;
    padding: 64px 42px;
}

.entry-content .heading {
    font-family: "maian";
    font-size: 48px;
    line-height: 1.3;
    letter-spacing: 10px;
    position: relative;
    display: inline-block;
    margin: 0;
}

.entry-content .heading:before {
    
    left: 100%;
    font-family: helvetica, sans-serif, serif;
    font-size: 9px;
    letter-spacing: 0;
    white-space: nowrap;
}

/* -- Animations Effects -- */


@keyframes fade {
    0% {
        transform: scaleY(0);
    }

    70% {
        transform: scaleY(0);
    }

    100% {
        transform: scaleY(1);
    }
}

@keyframes background-fade {
    0% {
        background: #ffffff;
    }

    100% {
        background: #ffffff;
    }
}

/* -- Small Mobile Screens Styles -- */

@media (max-width: 576px) {

    .entry-content .heading {
        font-size: 28px;
        letter-spacing: 5px;
    }

}

@media (max-width: 340px) {

    .entry-content {
        padding: 15px;
    }

}