.widgets {
  padding: 10px;
  display: flex;
  flex-wrap: wrap;
  border-radius: 5px;
  align-items: center;
  background-color: #ffffff;
}

.widgets a {
  margin: 5px;
  color: #660000;
  font-weight: 700;
  font-size: 1.6rem;
  text-align: center;
  border-radius: 5px;
  padding: 0.5rem 1rem;
  text-decoration: none;
  background-color: #f3f3f3;
  transition: all linear 0.2s;
}
.widgets a:hover {
  color: white;
  background-color: #660000;
}
