#brand {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 10px;
}

#brand img {
  height: 56px;
  width: auto;
  transition:
    transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1),
    filter 0.35s ease;
}

#brand img:hover {
  transform: scale(1.2) rotate(-6deg);
  filter: drop-shadow(0 4px 10px rgba(74, 144, 217, 0.7));
}

#brand h1 {
  margin: 0;
  font-size: 1.4em;
}
