* {
  box-sizing: border-box;
}

.issues_container {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  justify-content: space-evenly;
  align-items: flex-start;
  min-height: 75vh;
  margin: 0em 7em;;
}

.pdf_container{
  display: flex;
  flex-direction: column;
  /* justify-self: center;
  align-items: center; */
  width: 100vw;
}

.pdf{
  width: -webkit-fill-available;
}


.issue-container{
  display: flex;
  flex-direction: row;
  /* align-items: center;
  justify-content: center; */
  margin-top: 3em;
}

.issue-info{
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  border-top: black solid 1px;
  border-bottom: black solid 1px;
}

/* .issue {
  background-color: var(--exp-lightgrey);
  border-radius: 10px;
  border: 0.2px solid #555;
  height: 28rem;
  width: 20rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-top: 3em!important;
} */

.issue {
  width: 20rem;
  margin-top: 3em!important;
}

.issue:hover {
  padding:2px;
}


.issue-row::after {
  content: "";
  clear: both;
  display: table;
}

.cover-photo{
  object-fit: contain;
  /* height: 15rem;
  width: 15rem; */
  height: 100%;
  width: 100%;
  padding-right: 1em;
}

.issue-title{
  text-align: center;
  font-size: x-large;
  /* padding-top: 2em; */
  margin-top: 1em;
  margin-bottom: 0;
}



@media (max-width:1200px){
  .issues_container{
    margin: 0;
  }
  .issue-container{
    flex-direction: column;
    padding: 0em 1em 0em 1em;
  }
  .issue-image{
    display: flex;
    justify-content: center;
    width: 100%;
  }
  .issue-info{
    border-top: 0;
  }
  .cover-photo{
    object-fit: contain;
    /* height: 15rem; */
    width: 15rem;
    /* padding-right: 1em; */
  }
}

@media (max-width:600px){
  .issue-container {
  margin:0em;
  }
  .cover-photo{
    object-fit: contain;
    /* height: 15rem;
    width: 15rem; */
    height: 100%;
    width: 100%;
    padding: 0;
  }
}