html{
  font-size: 16px;
}

body {
  margin: 0;
  padding: 0;
  /* background: linear-gradient(45deg, rgb(194, 194, 194) , white); */
  background-color: rgb(214, 213, 213);
  background-size: auto;
}

.container {
  /* background-color: rgb(85, 85, 85); */
  max-width: 1980px;
  /* height: 100vh; */
}

.megrim-regular {
  font-family: "Megrim", system-ui;
  font-weight: 400;
  font-style: normal;
}

/* Navbar Styles begin here */
nav {
  background-color: rgb(49, 48, 48);
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 12px 0;
  gap: 8px;
  color: white;
  height: auto;
}

nav .menu-web {
  display: flex;
  gap: 12px;
  list-style: none;
  justify-content: center;
  width: 100%;
  margin: 0;
  align-items: center;
  /* color: white; */
}

nav .menu-web a {
  color: white;
  text-decoration: none;
  transition: 0.3s;
}

nav .menu-web a:hover {
  color: orange;
  font-size: 20px;
  transition: 0.3s;
}

nav .logo {
  font-size: 24px;
  /* color: white; */
}

nav .logo a {
  text-decoration: none;
  color: orangered;
}

/* Navbar styles end here */

.pagination {
        display: flex;
        justify-content: center;
        margin-top: 2rem;
        gap: 0.5rem;
    }

    .pagination a, .pagination span {
        padding: 0.5rem 1rem;
        border: 1px solid #e2e8f0;
        border-radius: 6px;
        text-decoration: none;
        color: #4a5568;
        transition: all 0.3s ease;
    }

    .pagination a:hover {
        background-color: #007bff;
        color: white;
    }

    .pagination .current {
        background-color: #007bff;
        color: white;
    }
