@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

/* Generic stuff*/
html {
    position: relative;
    min-height: 100%;
}

* {
    font-family: 'Poppins', sans-serif;
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

section {
    padding-top: 30px;
    padding-bottom: 30px;
    padding-right: 180px;
    padding-left: 180px;
}

.sec {
    padding: 10px;
}

.sec-end {
    padding: 10px;
}

/* Header */
header {
    background-color: black;
    width: 100%;
    position: fixed;
    z-index: 999;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 180px;
}

header img {
    float: left;
    width: 40px;
}


.logo {
    text-decoration: none;
    color: white;
    text-transform: uppercase;
    font-weight: 600;
    font-size: 1.7em;
}

.logo:hover {
    color: #3dc492;
    font-weight: 700;
}

.navigation a:link,
.navigation a:visited {
    color: white;
}

.navigation a {
    color: rgb(255, 255, 255);
    text-decoration: none;
    font-size: 1.2em;
    font-weight: 600;
    padding-left: 30px;
}

.navigation a:hover {
    color: #3dc492;
    font-weight: 650;
}

/* Main */
.main {
    width: 100%;
    display: grid;
    align-items: center;
    background-color: #252525;
}

.sec-main {
    padding: 30px;
}

.main h2 {
    color: #3dc492;
    font-size: 2.4em;
    font-weight: 600;
    margin-top: 20px;
}

.main h3 {
    color: white;
    font-size: 1.15em;
    font-weight: 500;
    letter-spacing: 0.3px;
    margin-top: 10px;
    overflow: hidden;
    text-align: justify;

}

.main h3 a {
    text-decoration: none;
    font-weight: 600;
}

.main h3 a:link {
    color: rgb(238, 235, 77);
}

.main h3 a:visited {
    color: rgb(238, 235, 77);
}

.main h3 a:hover {
    color: #3dc492;
}

.main h3 a:link,
a:visited {
    text-decoration: none;
}

.main img {
    float: none;
    width: 12.5em;
    display: block;
    margin: auto;
    padding-bottom: 10px;
}

/* Cards */
.cards {
    background-color: #ffffff;
}

.content {
    display: flex;
    justify-content: center;
    flex-direction: row;
    flex-wrap: wrap;
}


.Read {
    width: 100%;
    display: flex;
    padding-left: 15px;
    padding-right: 15px;
    justify-content: space-between;
    align-items: center;
}

.Read1 {
    width: 100%;
    padding-left: 15px;
    padding-right: 15px;
    padding-bottom: 5px;

    align-items: center;
    text-align: center;

}

.card {
    background-color: #ffffff;
    width: 15%;
    box-shadow: 0 5px 25px rgba(1 1 1 / 15%);
    border-radius: 10px;
    margin: 8px;
    transition: 1s ease;
}

.card:hover {
    transform: scale(1.1);
}

.card .icon {
    text-align: center;
    padding-top: 15px;
    padding-bottom: 5px;

}

.card .icon img {
    width: 55%;
}


.card-title {
    color: #000000;
    font-size: 1.1em;
    font-weight: 700;
}

.card-title-arabic {
    font-size: 1.3em;
    color: #000000;
    font-weight: 700;
}

.info {
    text-align: center;
}


.card-genre {
    color: #797979;
    font-size: 0.8em;
    font-weight: 500;
}

.info h3 {
    font-size: 1em;
    font-weight: 700;
    margin-top: 5px;
    margin-bottom: 5px;
    color: #3dc492;
}


.more-details-arabic {
    font-size: 1.3em;
}

.more-details,
.more-details-arabic {
    color: #3dc492;
    text-decoration: none;
}

.more-details:hover,
.more-details-arabic:hover {
    color: #ff5e01;
}


/* Footer*/
.footer {
    background-color: #000000;
    color: #fff;
    width: 100%;
    display: flex;
    justify-content: space-between;
    z-index: 999;
    font-size: 0.8em;
    font-weight: 600;
    padding: 3px 50px;

    position: absolute;
    bottom: 0;
}

.footer span {
    color: #3dc492;
}

.social-icons a {
    color: #ffffff;
    padding: 0 10px 0 0;
}

.citation a:link {
    color: #3dc492;
    text-decoration: none;
}

.citation a:visited {
    color: #3dc492;
    text-decoration: none;
}

.citation a:hover {
    color: #fff201;

}


/* Responsive stuff*/

@media (max-width:1650px) {

    /* Generic stuff*/
    body {
        font-size: 15px;
    }

    section {
        padding-top: 25px;
        padding-right: 100px;
        padding-left: 100px;
    }

    .title {
        margin-bottom: 18px;
    }

    /* Header */
    header {
        padding: 8px 100px;
    }

    header img {
        width: 38px;
    }

    .navigation a {
        padding-left: 27px;
    }

    /* Main */


}



@media (max-width:1400px) {

    /* Generic stuff*/
    body {
        font-size: 14px;
    }

    section {
        padding-top: 20px;
        padding-right: 50px;
        padding-left: 50px;
    }


    /* Header */
    header {
        padding: 5px 50px;
    }

    header img {
        width: 35px;
    }

    .navigation a {
        padding-left: 25px;
    }

    /* Main */



}

@media (max-width:1025px) {

    /* Generic stuff*/
    body {
        font-size: 12px;
    }

    section {
        padding-right: 20px;
        padding-left: 20px;
    }

    /* Header */
    header {
        padding: 5px 20px;
    }

    header img {
        width: 30px;
    }

    .navigation a {
        padding-left: 15px;
    }



    /* Footer*/
    .footer {
        padding: 3px 20px;
    }

    .social-icons a {
        padding: 0 5px 0 0;
    }

    .card {
        width: 30%;
    }
    .card-title {
        font-size: 1.2em;
    }
    
    .card-title-arabic {
        font-size: 1.4em;
    }
    
    .card-genre {
        font-size: 0.9em;
    }
    
    .info h3 {
        font-size: 1.2em;

    }
    
    
    .more-details-arabic {
        font-size: 1.4em;
    }

}







/* Phones*/
@media (max-width:500px) {

    /* Generic stuff*/
    body {
        font-size: 9px;
    }

    section {
        padding-right: 10px;
        padding-left: 10px;
    }

    .sec-main {
        padding: 15px;
    }

    /* Header */
    header {
        padding: 5px 10px;
    }

    header img {
        width: 20px;
    }

    .logo {
        font-size: 1.5em;

    }

    .navigation a {
        padding-left: 5px;
    }



    /* Cards */
    .card {
        width: 50%;

    }

    .content {
        flex-direction: column;
        align-items: center;
    }

    .card-title {
        font-size: 1.6em;
    }
    .card-title-arabic {
        font-size: 1.8em;
    }

    .card-genre {
        font-size: 1.3em;
    }

    .info h3 {
        font-size: 1.5em;
    }

    .main img {
        width: 15em;
    }


    /* Footer*/
    .footer {
        padding: 3px 10px;
    }

    .social-icons a {
        padding: 0 5px 0 0;
    }
}