@import url("https://fonts.googleapis.com/css2?family=Tajawal&display=swap");
* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  font-family: "Tajawal", sans-serif;
  text-decoration: none;
}
body {
  background-color: #eee;
}
/* Start Main */
main {
  width: 80%;
  margin: 50px auto;
  display: flex;
  justify-content: space-around;
}
/* Start Articles Styling */
main .container {
  background-color: #fff;
  padding: 15px;
  width: 60%;
  border-radius: 10px;
}
main .container > h3 {
  color: #333;
  font-size: 18px;
}
/* main .container > h3 i {
  margin-left: 10px;
} */
main .container article {
  margin: 20px 0;
  padding: 12px 5px;
  display: flex;
  justify-content: space-around;
  align-items: flex-start;
  border: 1px solid rgba(238, 238, 238, 0.466);
}
main .container article:nth-child(odd) {
  background-color: #f5f5f5;
}
main .container article .user {
  position: relative;
  text-align: center;
}
main .container article .user figure {
  margin: 10px 0;
}
main .container article .user figure img {
  width: 35px;
  border-radius: 10px;
  border: 2px solid #eee;
  padding: 2px;
}
main .container article .user figure a {
  display: block;
  color: #151d3b;
  font-size: 14px;
  font-weight: bold;
  transition: 0.3s ease-in-out;
}
main .container article .user figure a:hover {
  color: #ff294c;
}
main .container article .user ul {
  list-style: none;
}
main .container article .user ul li {
  display: inline-block;
  cursor: default;
}
main .container article .user ul li.one {
  color: #00d049d1;
}
main .container article .user ul li.two {
  color: #2666cf;
}
main .container article .user ul li.three {
  color: #40b4b8;
}
main .container article .user ul li.four {
  color: #ff294c;
}
main .container article .box .main a {
  font-size: 22px;
  color: #219f94;
  font-weight: bold;
  position: relative;
  bottom: 5px;
  transition: 0.3s ease-in-out;
}
main .container article .box .main a:hover {
  color: rgb(0, 102, 255);
}
main .container article .box .main p {
  margin-bottom: 50px;
}
main .container article .box .line {
  width: 400px;
  height: 0.5px;
  background-color: #eee;
  margin-bottom: 15px;
}
main .container article .box .others,
main .container article .box .tags {
  display: flex;
  flex-wrap: wrap;
  width: 80%;
  font-size: 12px;
}
main .container article .box .tags span {
  margin: 0 5px;
}
main .container article .box .tags .tag {
  background-color: #ababab;
  color: #fff;
  padding: 0 5px;
  border-radius: 4px;
}
main .container article .box .others div {
  margin: 10px;
  font-size: 12px;
}
main .container article .box .others div i {
  margin-left: 5px;
}
main .container article .box .others div a {
  color: #219f94;
}
main .container article .box .others div b {
  color: #ababab;
}
main .container button {
  color: #fff;
  background-color: #007286;
  border: none;
  width: 100%;
  padding: 10px 0;
  cursor: pointer;
  transition: 0.3s ease-in-out;
}
main .container button:hover {
  background-color: #007286d3;
}
main .container .statistics ul {
  list-style: none;
}
main .container .statistics ul li {
  background-color: #007286;
  color: #fff;
  margin: 5px -10px;

  padding: 1px 3px;
}
main .container .statistics ul li:nth-child(2) {
  background-color: #151d3b;
}
main .container .statistics ul li:nth-child(3) {
  background-color: #219f94;
}
main .container .statistics ul li:nth-child(4) {
  background-color: #ff294c;
}
main .container .statistics ul li i {
  margin-right: 5px;
}
/* End Articles Styling */

/* Start Sidebar Styling */

main aside {
  padding: 15px;
  width: 40%;
  margin-right: 15px;
}
main aside section {
  border-radius: 10px;
  background-color: #fff;
  padding: 15px;
  margin: 30px 0;
}
main aside section h2 {
  font-size: 20px;
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 1px solid #eee;
  color: #333;
}
main aside section .squares {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
main aside section .squares div {
  width: 95px;
  padding: 20px 0;
  font-size: 12px;
  background-color: #151d3b;
  margin: 2px 4px;
  color: #fff;
  text-align: center;
  cursor: default;
  transition: 0.3s ease-in-out;
}
main aside section .squares div:hover {
  transform: scale(1.1);
}
main aside section .squares div:nth-child(1) {
  background-color: #219f94;
}
main aside section .squares div:nth-child(2) {
  background-color: #2666cf;
}
main aside section .squares div:nth-child(3) {
  background-color: #666;
}
main aside section .squares div:nth-child(4) {
  background-color: #007286;
}
main aside section .squares div:nth-child(5) {
  background-color: #007286;
}
main aside section .squares div:nth-child(6) {
  background-color: #666;
}
main aside section .squares div:nth-child(7) {
  background-color: #2666cf;
}
main aside section .squares div:nth-child(8) {
  background-color: #219f94;
}
main aside section .squares div span {
  font-weight: bold;
  font-size: 16px;
}
main aside section .rated div,
main aside section .interaction div,
main aside section .branches div,
main aside section .votes div {
  display: flex;
  margin: 20px 0;
  padding-bottom: 10px;
  border-bottom: 1px dashed #eee;
}
main aside section span {
  margin-left: 5px;
  color: #fff;
  padding: 0 5px;
}
main aside section .rated span {
  margin-right: 5px;
  color: #151d3b;
  font-weight: bold;
}
main aside section .interaction div span {
  background-color: #ff294c;
}
main aside section .votes div span {
  background-color: #666;
}
main aside section .branches div span {
  background-color: #151d3b;
}
main aside section .rated div i {
  color: #333;
  margin: 3px 0 0 5px;
}
main aside section .interaction div i,
main aside section .votes div i,
main aside section .branches div i {
  color: #fff;
  font-size: 13px;
}
main aside section .news a {
  padding: 10px 0;
  border-bottom: 1px dashed #eee;
}
main aside section a {
  display: block;
  color: #219f94;
  transition: 0.3s ease-in-out;
}
main aside a:hover {
  color: #ff294c;
}
/* End Sidebar Styling */

/* End Main */
