@font-face {
    font-family: vazir;
    src: url("../font/vazir.ttf") format("truetype"),
    url("../font/vazir.woff") format("woff");
}
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: vazir;
}
body{
    height: 160vh;
    background: linear-gradient(to top, red, blue) no-repeat;
}
.nav-list{
    list-style-type: none;
    margin-bottom: 45px;
    display: inline-block;
}
.nav-list li{
    transition: .25s ease-out;

}
.nav-list li:hover{
    transform: scale(1.2);
}
a{
    text-decoration: none;
    font-size: 20px;
    color: orange;
}
a:focus{
    color: red;
}
.container{
    width: 900px;
    height: 990px;
    background-color: white;
    margin: 50px auto;
    padding: 15px 55px;
    border-radius: 20px;
    box-shadow: 0px 0px 30px white;
    text-align: center;
}
h1{
    width: 100%;
    margin-bottom: 10px;
}
hr{
    height: 5px;
    background: linear-gradient(to left, red, blue);
}
.container li{
    margin-top: 50px;
    text-align: justify;
}



















