.footer {
  width: 100%;
  height: 45px;
  background-color: #2b2622;
  color: #e6d8b6;

  display: flex;
  align-items: center;
  justify-content: space-between;

  padding: 0 25px;
  box-sizing: border-box;

  border-top: 1px solid rgba(255, 200, 100, 0.2);
}

.footer-left {
  font-family: 'Cormorant Garamond', serif;
  font-size: 15px;
}

.footer-right a {
  color: #e6d8b6;
  transition: 0.2s;
}

.footer-right a:hover {
  filter: drop-shadow(0 0 4px rgba(255, 200, 100, 0.5));
}

.footer-right a:hover {
  color: #ffcc66;
}

.footer-center {
  text-align: center;
  font-size: 12px;
  opacity: 0.75;
}

.footer-center a {
  color: #e6d8b6;
  text-decoration: none;
  border-bottom: 1px solid rgba(255, 200, 100, 0.4);
  transition: 0.2s;
}

.footer-center a:hover {
  color: #ffcc66;
  border-bottom: 1px solid #ffcc66;
}
