@font-face {
  font-family: Samim;
  src: url(../fonts/Samim.woff);
}
* {
  margin: 0;
  padding: 0;
  font-family: Samim, sans-serif;
  box-sizing: border-box;
}

body {
  direction: rtl;
}

.container {
  background: linear-gradient(to right, #2dd478, #2a418d);
  width: 100%;
  height: 100%;
  min-height: 100vh;
  display: flex;
  align-items: center;
  flex-direction: column;
}

.page-title {
  color: rgb(0, 0, 0);
  padding: 28px;
  text-align: center;
}

.card-lists {
  max-width: 1300px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
  margin: auto;
  padding: 16px;
}

.card-item {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 150px;
  width: 200px;
  background-color: rgb(255, 254, 254);
  border-radius: 20px;
  color: #000000;
  padding: 12px;
  flex-direction: column;
}

.card-lists a {
  text-decoration: none;
}

.card-lists h1 {
  text-align: center;
  text-shadow: 0px 2px 10px #999999;
}

.card-lists span {
  font-size: 40px;
  color: #1e88e5;
  margin-bottom: 15px;
}

.footer {
  width: 100%;
  display: flex;
  justify-content: space-between;
  max-width: 1300px;
  padding: 8px 20px;
}
.footer .copyright {
  gap: 8px;
}
.footer img {
  width: 70px;
}

@media only screen and (max-width: 600px) {
  .card-lists h1 {
    font-size: 16px;
  }
  .page-title {
    font-size: 26px;
  }
  .card-item {
    width: 150px;
  }
  .card-lists span {
    font-size: 28px;
  }
}

@media only screen and (min-width: 600px) {
  .card-lists h1 {
    font-size: 18px;
  }
  .page-title {
    font-size: 32px;
  }
}

@media only screen and (min-width: 992px) {
  .page-title {
    font-size: 36px;
  }
}

img {
  width: 50px;
  height: 50px;
  object-fit: contain;
}

#breadcrumb {
	display: flex;
	font-size: large;
}

#breadcrumb a {
  color: #1e88e5;
  background-color: white;
  border-radius: 20px;
  padding: 3px;
  text-decoration: none;
}
	
.separator {
	margin: 0 5px;
}

