body {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  margin: 0;
  padding: 0;
  background-color: rgb(250, 250, 245);
  color: #333;
  direction: rtl;
  text-align: right;
}

article {
  max-width: 95%;
  margin: 12% auto;
  padding: 20px;
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

article a {
  background-color: rgb(25, 39, 51);
  text-decoration: underline;
}

article a:hover {
  color: rgb(25, 39, 51);
  background-color: rgb(43, 245, 255, 1);
  
}

h1 {
  color: rgb(43, 245, 255, 1);
  background-color: rgb(25, 39, 51, 1);
}

h2 {
  color: rgb(25, 39, 51);
  border-bottom: 2px solid rgb(43, 245, 255);
  padding-bottom: 10px;
}

p, ul {
  margin: 20px 0;
}

ul {
  list-style-type: disc;
  margin-right: 20px;
}

.references {
  list-style-type: decimal;
  padding: 0;
  direction: ltr;
  text-align: left;
  font-size: small;
}

.references li {
  margin-bottom: 10px;
}

.references a {
  color: rgb(25, 39, 51);
  background-color: transparent;
  text-decoration: none;
  font-size: small;
}

.references a:hover {
  text-decoration: underline;
}

@media all and (max-width: 700px) {
  article {
    margin: 0;
    margin-top: 25%;
  }
  
  h1 {
    font-size: large;
  }
  h2, h3, p, a, li {
    font-size: medium;
  }

  .references li, a {
    font-size: x-small;
  }

}

@media all and (max-width: 300px) {
article {
  margin-top: 45%;
}
}
