/* .panel-list {
  max-width: 25%;
} */

.panel-list-wrapper{
  margin: 0 25%;
}

.panel-list-wrapper > p {
  text-align: center;
  font-weight:bold;
}

.panel-list-wrapper > ul {
  list-style: none;
  text-align: left;
  margin: 0;
  padding: 0;
}

.panel {
  border-width : 1px 2px 2px 1px ;
  border-style: solid;
  border-color: black;
  margin-bottom: 1rem;
  box-shadow: 1px 1px 1px 1px black;
  transition: 0.1s ease;
}

.panel:hover {
  transform: scale(1.05);
  box-shadow: 2.5px 2.5px 2.5px 2.5px black;
}

.panel-link{
  width: 100%;
  text-decoration: none;
  display: inline-block;
  padding: 3px;
}

.panel p {
  color: darkblue;
  font-weight:bold;
}