@import url("https://fonts.googleapis.com/css2?family=Roboto:wght@300&display=swap");
* {
  margin: 0;
  padding: 0;
  font-family: "Roboto", sans-serif;
}

#artical_top {
  background-color: #f0f0f0;
  padding-top: 25px;
}
#artical_top > div {
  width: 80%;
  height: 150px;
  margin: auto;
}
#artical_top > div > p {
  margin-bottom: 20px;
  color: #444444;
}
#artical_top > div > h1 {
  margin-bottom: 20px;
  color: #444444;
  cursor: pointer;
}

#pages_num {
  display: flex;
  /* border: 1px solid red; */
  width: 75%;
  margin: auto;
  margin-top: 60px;
  justify-content: space-between;
  margin-bottom: 20px;
}

#pages_num > div {
  display: flex;
  width: 80%;
  /* border: 1px solid blue; */
  gap: 15px;
  align-items: center;
}

#pages_num > button {
  width: 90px;
  height: 30px;
  border: none;
  border-radius: 5px;
  background-color: #f0f0f0;
  cursor: pointer;
}
.artcle_mid_sec {
  width: 80%;
  height: 305px;
  /* border: 1px solid teal; */
  margin: auto;
  display: flex;
  margin-bottom: 40px;
  border-radius: 10px 10px 10px 10px;
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
  background-color: white;
}
.artcle_mid_sec > div {
  width: 50%;
}

.artcle_mid_sec > img {
  height: 100%;
  width: 500px;
  border-radius: 10px 0px 0px 10px;
}

.text_sec {
  padding: 30px 20px 20px 20px;
  text-align: left;
  word-wrap: break-word;
  height: 80%;
  /* border: 1px solid red; */
}
.text_sec h1 {
  font-size: 22px;
  color: #444444;
}
.button_sec {
  display: flex;
  justify-content: space-between;
}
.button_sec button {
  width: 200px;

  height: 50px;
  border-radius: 10px;
  border: none;
  font-size: large;
  color: white;
  background-color: #f53838;
  cursor: pointer;
}
h1 + p {
  margin-bottom: 20px;
  color: gray;
}
.text_bottom {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  /* border: 1px solid; */
  height: 160px;
  color: gray;
}

#grad {
  background-image: linear-gradient(white, white, lightgrey);
  padding-bottom: 50px;
}

#footer {
  margin-top: -40px;
}
