

/*
CSS RESET
*/
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    /*font-family: inherit;*/
    vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
    display: block;
}
body {
    line-height: 1;
}
ol, ul {
    list-style: none;
}
blockquote, q {
    quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
    content: '';
    content: none;
}
table {
    border-collapse: collapse;
    border-spacing: 0;
}
a{
    text-decoration: none;
    color: #333333;
}

/*
FONT
*/


@font-face {
    font-family: yekan;
    font-style: normal;
    font-weight: 950;
    src: url('fonts/yekan/woff/IRANYekanX-ExtraBlack.woff') format('woff'),
    url('fonts/yekan/woff2/IRANYekanX-ExtraBlack.woff2') format('woff2');
}

@font-face {
    font-family: yekan;
    font-style: normal;
    font-weight: 1000;
    src: url('fonts/yekan/woff/IRANYekanX-Heavy.woff') format('woff'),
    url('fonts/yekan/woff2/IRANYekanX-Heavy.woff2') format('woff2');
}

@font-face {
    font-family: yekan;
    font-style: normal;
    font-weight: bold;
    src: url('fonts/yekan/woff/IRANYekanX-Bold.woff') format('woff'),
    url('fonts/yekan/woff2/IRANYekanX-Bold.woff2') format('woff2');
}

@font-face {
    font-family: yekan;
    font-style: normal;
    font-weight: normal;
    src: url('fonts/yekan/woff/IRANYekanX-Regular.woff') format('woff'),
    url('fonts/yekan/woff2/IRANYekanX-Regular.woff2') format('woff2');
}

/*
STYLES
*/

:root{
    --gray: #464646;
}


body{
    background: #F5F5F5;
    font-family: yekan, serif;
    direction: rtl;
    color: #333;
    line-height: 1.6;
    font-size: 18px;
}

.content{
    display: flex;
    flex-direction: column;
    align-items: center;
}

.title{

    text-align: center;

    padding: 30px;

    font-size: 34px;

    font-weight: 800;

    width: 100%;
}

.descriptionContainer{

}

.description{

    padding: 10px 10px 20px 10px;
}

.titleDescription{

    font-size: 18px;
}

#firstImage{

    width: 70%;

    border-radius: 10px;
}

#secondsImage{

    margin-bottom: 15px;

    border-radius: 15px;

    width: 80%;
}

.connection{

    display: flex;

    flex-direction: column;

    align-items: flex-start;

    width: 100%;

    gap: 5px;

    padding: 5px 0;
}

.connection__link{

    font-size: 25px;

    font-weight: 800;

    display: flex;

    gap: 8px;
}

.connection__icon{

    font-size: 24px;
}



/*
GRID
*/


.container{
    width: 100%;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
    margin-left: auto;
    margin-right: auto;
}

@media (max-width: 576px) {
    .container{
        width: 100%;
    }
}

@media (min-width: 576px) {
    .container{
        width: 540px;
    }
}

@media (min-width: 768px) {
    .container{
        width: 720px;
    }
    .connection__link {

        font-size: 20px;
    }
}

@media (min-width: 992px) {
    .container{
        width: 	960px;
    }
    #firstImage {
        width: 44%;
    }
    body{
        font-size: 16px;
    }

}

@media (min-width: 1200px) {
    .container{
        width: 1140px;
    }


}

@media (min-width: 1400px) {
    .container{
        width: 1320px;
    }
}
