



main > section > ul > li {
    width: 400px;
    min-height: 400px;
    display: flex; justify-content: center; align-items: center;
}

main > section > ul > li > a {
    text-decoration: none;
    color: white;
    border: solid 1px rgba(245, 245, 245, 0.3);
    padding: 30px;
    border-radius: 10px;
}

main > section > ul > li > a:hover {
    background: purple;
}

main > section > ul > li > a > article {
    display: flex; flex-direction: column; justify-content: flex-start; align-items: center;

}

main > section > ul > li > a > article > div {
    /*border: solid 1px silver;*/
    border-radius: 5px;
    height: 300px;
    width: 300px;
    display: flex; justify-content: center; align-items: center;
    background: rgba(133, 0, 104, 0.7);
}

main > section > ul > li > a > article > h3,
main > section > ul > li > a > article > p{
    margin: 0px;
    width: 100%;
    /*display: flex; justify-content: flex-start;*/
    font-size: 160%;
}


main > section > ul > li > a > article > h3[itemprop="name"]{
    font-weight: normal;
    max-width: 300px;
    margin-top: 25px;
}

main > section > ul > li > a > article > h3[itemprop="description"]{
  width: 300px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  font-size: 90%;
  margin-top: 10px;
  margin-bottom: 10px;
  font-weight: normal;

}

main > section > ul > li > a > article > p{
    font-weight: bold;
}

