@import url('https://fonts.googleapis.com/css2?family=Baloo+Bhaijaan+2:wght@400..800&display=swap');
*{
    margin:0;
    padding:0;
    direction: unset;
    text-decoration: none;
   
}
body {
    font-family: 'Baloo Bhaijaan 2', sans-serif;
    direction: unset;
    font-size: 1rem;
    font-style: none;
    background-color:rgb(240,248,255);
    justify-content: center;
    align-items: center;
    align-content: center;
    display:inline-block;
}
blockquote{
    font-family: 'Baloo Bhaijaan 2', sans-serif;
    font-size: 1rem;
    color: rgb(55, 115,170);
    text-align: center;
    direction: unset;
    border: solid 2px rgb(55, 115,170);
    border-radius: 8px;
    box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.1);
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 80%;
    padding: 1rem;
    margin: 20px 20px;
}
blockquote:hover {
    box-shadow: 8px 8px 15px rgba(0, 0, 0, 0.2);
}
div.card {
    text-decoration: none;
    color: rgb(55, 115,170);
    display: inline-flex;
    flex-direction: column;
    direction: unset;
    align-items: center;
    justify-content: center;
    text-align: center;
    width: 40vw;
    background-color: rgb(240, 248, 255);
    border: 2px solid rgb(55, 115, 170);
    border-radius: 15px;
    box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.1);
    padding: 3px;
    margin: 10px;
    transition: transform 0.4s;
    transform: translateY(0);
}
div.card:hover {
    transform: translateY(-10px);
    box-shadow: 4px 4px 15px rgba(0, 0, 0, 0.2);

}
.card-content {
    font-family: 'Baloo Bhaijaan 2', sans-serif;
    font-size: 1rem;
    text-decoration: none;
    direction:rtl;
    text-align:center;
    
}


footer {
    font-family:'Baloo Bhaijaan 2', sans-serif;
    font-size: 1rem;
    text-decoration: none;
    text-align: right;
    direction: rtl;
    margin: 10px;
    font-size: clamp(0.9rem, 2vw, 1rem);
    margin: 1rem 0;
    padding: 0 1vw;
}
footer p {
    margin: 10px;
    color: rgb(55, 115, 170);
    text-align: right;
    direction: rtl;
}
footer a.footer-link {
    color: rgb(75, 115, 170);
    text-decoration: underline;
    font-style: oblique;
    font-weight: bold;
}