@import url("../../../general/css/basic.css");
@import url("../../../general/css/header.css");
@import url("../../../general/css/footer.css");
@import url("../../components/comments/css/comments.css");

.article{
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  margin: 1em auto 1em auto;
  padding: 1em 1em;
  width: 70%;
  height: fit-content;
  border-radius: 0.4em;
  box-shadow: 5px 10px 8px #888888;
  transition: 0.8s ease-in-out;
  border:var(--clr-dark) 1px solid;
}
.article:hover{
  box-shadow: 5px 10px 8px orange;
}
.article .banner{
  display: flex;
  align-items: center;
  justify-content: center;
  margin: auto;
  width: 70%;
  height: 70%;  
}
.article .banner img {
  display: flex;
  justify-self: center;
  width: 70%;
  height: 70%;
  border-radius: 1em;
}
.article .title{
  font-size: 1.9em;
  text-align: center;
}
.article .title time {
  /* position: absolute;
  right: 3em; */
  margin: 2.5em 0 2.5em 0;
  font-size: 0.5em;
  border: orange 2px dashed;
}
.article .text{
  height: 100%;
  align-items: center;
  vertical-align: middle;
  font-size: 0.9em;
  /* border: var(--clr-dark) 1px solid; */
}
.article .text p {
  text-indent: 1em;
}
.article .text #indent {
  margin-left: 1em;
}
.article .text #img_desc{
  margin-top: 3em;
  text-align: center;
  color: #888888;
}
.article .text .info_img{
  display: flex;
  align-items: center;
  justify-content: center;
  margin: auto;
  width: 100%;
  height: 100%; 
}
.article .text .info_img img{
  display: flex;
  justify-self: center;
  width: 100%;
  height: 100%;
  /* width: inherit;
  height: inherit; */
  border-radius: 1em;
}
.article .text dfn {
  text-decoration: none;
  color: red;
}
.article .text var {
  color: green;
}
.article .text #u {
  /* color: orange; */
  border-bottom: orange 2px dashed;
}
.article .text q {
  color: #add8e6;
}
.article .text #function {
  color:  blue;
}
.article .text #formula {
  padding: 0.2em;
  color: green;
  border: #888888 1px solid;
}
code {
  background: rgb(183, 181, 181);
}
@media (max-width: 600px) {
  .article{
    width: 100%;
  }
  
}
