@font-face {
    font-family: "IranNastaliq";
    src: url(../Fonts/ttf/IranNastaliq.ttf) format(truetype);
}

@font-face {
    font-family: "ASardarHoor";
    src: url(../Fonts/ttf/ASardarHoor.ttf) format(truetype);
}

@font-face {
    font-family: "Dirooz";
    src: url(../Fonts/ttf/Dirooz.ttf) format(truetype);
}

@font-face {
    font-family: "Sahel";
    src: url(../fonts/ttf/Sahel.ttf) format(truetype);
}

*,
*::after,
*::before{
    box-sizing: border-box;
    padding: 0;
    margin: 0;
    font: inherit;
}

body{
    font-family: "Sahel";
    background-color: #BDBDBD;
}

.container{
    width: 100%;
    margin: 100px auto;
    padding: 20px;
}

.txt{
    width: 100%;
    box-shadow: 0 2px 16px rgba(0, 0, 0, 0.2);
    border-radius: 6px;
    -webkit-border-radius: 6px;
    -moz-border-radius: 6px;
    -ms-border-radius: 6px;
    -o-border-radius: 6px;
    padding: 10px;
    background-color: #fff;
    padding: 10px;
}

.txt__text{
    font-size: 22px;
    line-height: 50px;
    text-align: justify;
}

.btn__link {
    width: 250px;
    height: 50px;
    background-color: #fff;
    margin: 50px auto;
    text-align: center;
    padding: 10px;
    background-color: #616161;
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
}
.btn__link-link {
    text-decoration: none;
    width: 100%;
    font-family: "Dirooz";
    font-size: 20px;
    color: #03A9F4;
}

@media screen and (max-width: 468px) {
    .container{
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }
    .txt{
        width: 90%;
    }

    .txt__text {
        font-size: 30px;
        line-height: 65px;
    }

}

