body {
  margin: 0;
  font-family: Roboto, "Helvetica Neue", sans-serif;
}

.site-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 40px;
  background-color: #b30000;
  color: white;
  border-bottom: 1px solid #ddd;
  font-size: 20px;
}

.site-header .logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.site-header .logo img {
  height: 35px;
  width: auto;
  display: block;
}

.site-header nav a {
  display: inline-block;
  margin-left: 50px;
  text-decoration: none;
  color: #f5f5f5;
  font-weight: 500;
  font-size: 16px;
  transition: transform 0.2s ease;

}

.site-header nav a:hover {
  transform: scale(1.1);
  /* something */
}

.site-footer {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px;
  padding: 20px;
  background-color: #b30000;
  color: white;
  border-bottom: 1px solid #ddd;
  font-size: 14px;
}

.site-footer a {
  display: inline-block;
  margin-left: 50px;
  text-decoration: none;
  color: #f5f5f5;
  font-weight: 500;
  font-size: 14px;
  transition: transform 0.2s ease;
}

.site-footer a:hover {
  /* transform: scale(1.1); */
  text-decoration: underline;
}




















