body {
    margin: 0;
    padding: 2rem;
    background-color: #f7f7f7;
    color: #333;
}

header, .sectionTitle {
    background: #AD1616;
    background: linear-gradient(227deg, rgba(173, 22, 22, 1) 23%, rgba(0, 0, 0, 1) 70%);
    color: white;
    padding: 1rem 2rem;
    border-radius: 8px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

header img {
    width: 150px;
}

/* Cards */

.cards {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: auto;
  flex-wrap: wrap;
  max-width: 90%;
  height: 30em;
  align-items: center;
}

.cards a {
  background-color: #AD1616;
  color: white;
  font-weight: bold;
  margin-right: 1em;
  height: 150px;
  width: 200px;
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  align-items: center;
  text-align: center;
  text-decoration: none;
}

.cards a:hover {
  background-color: #333;
  transition: all 0.3s ease-in-out;
}