/* In the name of GOD */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

@font-face {
 font-family: 'Samim';
 src: url(../fonts/Samim.woff2) format('woff2');
}

html {
  font-family: "Samim";
}

body {
    font-family: "Samim", sans-serif;
    font-size: 14px;
    background-color:#945222;
    background-size: cover;
    background-position: center;
    direction: rtl;

}


#container {
    padding: 30px;
    position: relative;
    /*width: 940px;*/
    /*height: 100vh;*/
    height: 150px;
    width: 100%;

}

#container:after {
    content: "";
    display: block;
    clear: both;
    height: 0;
}



.copyright {
    position: absolute;
    float: right;
    /*width: stretch;*/
    border-radius: 10px;
    background: rgba(255,255,255,0.25);
    box-shadow: 0 8px 32px 0 rgba(22,22,23,0.37);
    backdrop-filter: blur(4px);
    border: 1px solid rgba(255,255,255,0.18);
    /*padding: 10px 30px;*/
    /*justify-items: center;*/
    margin-bottom: 10px;
    width: 100%;
    text-align: center;


}