*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
html{
    overflow-x: hidden;
}
body{
    background-color: #fff;
    min-height: 100vh;
    overflow-x: hidden;
}

h1, h2, h3, p, a{
    font-family: 'Noto Kufi Arabic', sans-serif;
}

header{
    min-height: 40vh;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    font-size: 20px;
    color: #5F6D80;
    text-align: center;
}

.disContainer{
    width: 70%;
    display: flex;
    justify-content: space-around;
    align-items: center;
    margin: auto;
}
.disContainer img{
    width: 20%;
    border-radius: 50%;
}
.disCountContainer{
    display: flex;
    justify-content: space-between;
    flex-direction: column;
}
.disCountContainer h2{
    color: #5F6D80;
}
.disCountContainer a{
    background-color: #7289DA;
    text-decoration: none;
    padding: 10px;
    text-align: center;
    color: white;
    font-weight: bold;
    border-radius: 5px;
    transition: 300ms all;
}
.disCountContainer a:hover{
    background-color: black;
}

.Post{
    width: 70%;
    margin: 50px auto;
    color: #5F6D80;
}
.Post h2{
    font-weight: bold;
}
.Post p{
    font-size: 20px;
}


.footer{
    display: none;
}



@media only screen and (max-width: 900px){
    .disContainer{
        width: 100%;
        display: flex;
        justify-content: space-around;
        align-items: center;
        margin: auto;
    }
    .Post{
        width: 90%;
        margin: 50px auto;
        color: #5F6D80;
    }
}
@media only screen and (max-width: 600px){
    .disContainer{
        width: 100%;
        display: flex;
        justify-content: space-around;
        align-items: center;
        flex-direction: column-reverse;
        margin: auto;
    }
    .disCountContainer{
        margin: 20px;
    }
    .Post{
        width: 95%;
        margin: 50px auto;
        color: #5F6D80;
        text-align: center;
    }
}




