

  #stored-post {
    display: flex;
    margin: 10.5rem auto 3rem auto;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 2px 8px black;
    background-color: white;
    width: 90%;
    justify-content: center;
    max-width: 30rem;
  }

  #stored-post ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

#stored-post li{
  border: 1px solid #2e2a2a;
  margin: 1rem 0;
  background-color: #9b8888;
}
#stored-post a{
    display:  block;
    padding: 1rem;
    width: 100%;
    text-decoration: none;
    color: black;
    font-weight: bold;
}

#stored-post a:hover,
#stored-post a:active {
    background-color: lightcyan;

}


