
body , html{
  margin: 0;
  padding: 0;
  text-align: center;
}
/* 
nav{
  height:45px;
  background-image: url("/images/background1.png");
  text-align: center;
  margin: 0;
  padding: 0;
}

.nav-element{
  font-family: "Noto Kufi Arabic", sans-serif;
  font-weight: bold;
  font-size: 25px;
  display: inline-block;
  margin-left: 15px;
  margin-right: 15px;
  color: black;
} */

h1{
  text-align: center;
  font-family: "Noto Kufi Arabic", sans-serif;
}

.bookIndex-element{

  font-size: 25px;
  border-bottom: 2px black solid;
  width: 50%;
  text-align: center;
  display: block;
  margin-left: 25%;
  margin-top: 20px;
  color: black;
  text-decoration: none !important;
}
a {
  text-decoration: none;
}

.bookIndex-element:hover{
  scale: 1.1;
}

.bookIndex-list{
  width: 100%;
  text-align: center !important;
}


:root{
    --black:#111;
    --dark:#000;
    --gray:#f5f5f5;
    --lightgray:#eaeaea;
    --white:#ffffff;
}

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    font-family:"Noto Kufi Arabic", sans-serif;
    background:var(--white);
    color:var(--black);
    line-height:1.8;
}

/* Top Bar */
.topbar{
    background:var(--black);
    color:var(--white);
    text-align:center;
    padding:8px;
    font-size:14px;
}

/* Header */
header{
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:20px 8%;
    border-bottom:1px solid var(--lightgray);
    background:var(--white);
    position:sticky;
    top:0;
}

.logo{
    font-size:26px;
    font-weight:700;
}

nav a{
    text-decoration:none;
    color:var(--black);
    margin:0 12px;
    font-weight:500;
    position:relative;
}

nav a::after{
    content:"";
    width:0;
    height:2px;
    background:var(--black);
    position:absolute;
    bottom:-4px;
    right:0;
    transition:0.3s;
}

nav a:hover::after{
    width:100%;
}

    .topbar {
      background-color: #000;
      color: #fff;
      text-align: center;
      padding: 10px 0;
      font-size: 0.9rem;
    }

    .articles-container {
      max-width: 1200px;
      margin: 30px auto;
      padding: 0 15px;
    }

    .article-card {
      background-color: #fff;
      border-radius: 8px;
      padding: 20px;
      margin-bottom: 20px;
      box-shadow: 0 2px 8px rgba(0,0,0,0.05);
      transition: transform 0.2s, box-shadow 0.2s;
    }

    .article-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    }

    .article-title {
      font-size: 1.5rem;
      font-weight: 700;
      margin-bottom: 10px;
      color: #222;
    }

    .article-content {
      font-size: 1rem;
      color: #555;
      line-height: 1.6;
    }

    .article-footer {
      margin-top: 15px;
      font-size: 0.85rem;
      color: #888;
    }

    a.read-more {
      color: #0d6efd;
      text-decoration: none;
    }

    a.read-more:hover {
      text-decoration: underline;
    }

footer{
  z-index: 1000;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
}
br{
  user-select: none;
}