@charset "utf-8";
/* CSS Document */
#hp-tile {
  background: rgb(5, 80, 127);
  width:100%;
	height:100%;
	display: flex;
	align-items: start;
	flex-direction: column;
	color: var(--white);
  padding: 1rem;
  border-radius: .25rem;
  box-shadow: 0px .25rem 10px rgba(0,0,0,.35);
}
.hpanels{
	border-bottom: 2px solid rgba(245,245,245,0.5);
  color: var(--white);
  padding-bottom: 5px;
  margin-bottom: 10px;
	width: 100%;
}

#hp-tile ul{
 padding: 0;
}
#hp-tile li{
  list-style: none;
}
#hp-tile li>a{
  color: white;
}
.tile-panel{
	color: var(--white);
}
.tile-panel a{
	color: var(--white);
}
.tile-panel a:hover{
	color:var(--secondary);
}