#footer {
  --side-padding: 60px;

  position: absolute;
  box-sizing: border-box;
  left: 0;
  /* width: calc(100vw - 60px); */
  width: 100%;
  padding: 30px;
  min-height: 200px;
  background-color: var(--bg-accent);
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  gap: 20px;
  padding-left:  var(--side-padding);
  padding-right: calc(var(--side-padding) + 60px);
  /* margin-top: 70px; */
  top: 100%;
}

#footer a {
  color: var(--fg-accent);
  font-size: 1.1em;
}

#footer_logo {
  background-image: url("/svgs/grafex_logo_small.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: 50% 50%;
  width: 50px;
  height: 50px;
}

.footerContent {
  max-width: 400px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footerContent a {
  align-self: flex-start;
}

.footerCaption {
  font-size: 1.5em;
  /* font-weight: bold; */
  display: block;
  margin-bottom: 10px;
}

#footer_copyright {
  /* align-self: flex-end; */
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}


@media only screen and (max-width: 1000px) {
    #footer {
        flex-direction: column;
    }
}
