aside {
  background-color: rgba(0, 0, 0, .6);
  display: flex;
  flex-flow: column nowrap;
  justify-content: flex-start;
  align-items: center;
  padding-top: 10px;
}

.notices
{
  color: white;
  width: 90%;
  border-radius: 5px;
  margin-bottom: 20px;
  background-color: #5DADE2;
}

.notices h1 {
  text-align: center;
  border-top: 1px solid #5DADE2;
  width: 100%;
}

.notices p {
  padding: 0 10px;
}

.notices p:nth-of-type(1) {
  font-size: .9rem;
  font-style: italic;
}

.notices p:nth-of-type(2)
{
  font-size: 1.1rem;
  line-height: 1.5;
}

.alerts
{
  color: white;
  width: 90%;
  border-radius: 5px;
  margin-bottom: 20px;
  background-color: #28B463;
  margin-top: 20px;
}

.alerts h1 {
  text-align: center;
  border-top: 1px solid #28B463;
  width: 100%;
}

.alerts p {
  padding: 0 10px;
    font-size: 1.1rem;
  line-height: 1.5;
}


aside > a {
  display: block;
  max-width: 90%;
  flex: 0 1 auto;
  text-decoration: none;
  text-align: center;
  margin-bottom: 5px;
  background-color: #A569BD;
  border-radius: 5px;
}

aside > a > span {
  color: white;
}

aside > a > span:nth-of-type(1)  {
  font-size: 150%;
  font-style: italic;
}

aside > a > span:nth-of-type(2)  {
  text-transform: uppercase;
  font-size: 220%;
}

aside > a > svg {
  width: 70%;
  height: 70%;
  fill: #ffffff;
  margin: 10px 15% 0px;
}

aside > a:hover {
  background-color: #7D3C98;
}