/* ===== Header ===== */

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #000;
  color: white;
  padding: 5px 20px;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
}

.site-title {
  margin: 0;
  font-size: 24px;
  font-weight: bold;
  cursor: pointer;
  text-decoration: none;
  color: inherit;
  transition: transform 0.3s ease;
}

.favicon-icon {
  width: 30px;
  height: 30px;
  margin-right: 30px;
  transition: transform 0.3s ease;
}
.site-title:hover,
.favicon-icon:hover {
  transform: scale(1.1);
}
