:root {
  --site-footer-bg: #fcfdff;
  --site-footer-ink: #4a514c;
}

.site-footer,
.site-footer * {
  box-sizing: border-box;
}

.site-footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  width: 100%;
  height: 205px;
  padding: 60px 10px;
  background: var(--site-footer-bg);
}

.site-footer__menu {
  display: flex;
  align-items: center;
  gap: 8px;
  height: 28px;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--site-footer-ink);
  cursor: pointer;
  font-size: 20px;
  font-weight: 700;
  line-height: 1;
}

.site-footer__menu .material-symbols-outlined {
  font-size: 20px;
}

.site-footer__copyright {
  display: flex;
  align-items: center;
  gap: 4px;
  margin: 30px 0 0;
  color: var(--site-footer-ink);
  font-size: 20px;
  font-weight: 400;
  line-height: 1;
}

.site-footer button:focus-visible {
  outline: 2px solid #e49600;
  outline-offset: 2px;
}
