
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{
  background-image: url("/images/background1.webp");
}
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%;
}

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