
.applicationContainer{
    background-color: #212121 !important;
    width: 100vw;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.applicationContainer .title{
    font-size: 23px;
    color: white;
    padding: 0 16px;
    direction:rtl;
}

.linkContainer {
    display: flex;
}

.link_{
    flex-basis: 50%;
    display: flex;
    flex-direction: column;
    width:320px;
    height: 320px;
    border-radius: 20px;
    background-color: #303030;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s ease-in-out 0s;
    margin: 32px;
}

.link_:hover{
    background-color:#505050 ;
    cursor: pointer;
}

.link_ img{
    width: 100px;
}

.icon{
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.link_ a{
    padding: 24px 0;
    color: white !important;
    text-align: center;
    border-top: 1px solid #707070;
    width: 100%;
    font-family:IranYekan,Ebrima;
    direction:rtl;
}

@media screen and (max-width:1024px) {
    .applicationContainer{
        width:100%;
        padding:32px 12px;
    }
    .applicationContainer .title{
        font-size: 18px;
        text-align: center;
    }
    .link_{
        width: 200px;
        height: 200px;
        margin: 32px 24px;
    }

    .link_ img{
        width: 50px;
    }
}

@media screen and (max-width:600px){
    
    .linkContainer{
        flex-direction: column;
        width: 100vw;
        align-items: center;
        justify-content: center;
    }
    .link_{
        flex-basis: 100%;
        width: calc(100% - 48px);
        max-width: 300px;
        margin:12px 24px;

    }

    .icon{
        padding: 40px 0;
    }
    
}