body {
  margin: 0;
}

* {
  box-sizing: border-box;
}

header {
  background: var(--header-background-color);
  width: 100%;
  margin: 0;
  padding: 0px 24px;
  min-height: 75px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

header .header-logo-wrapper {
  display: flex;
}

header .header-logo {
  max-height: 100px;
  object-fit: contain;
  padding: 16px 24px;
}

header .header-link-back {
  position: absolute;
  align-items: center;
  justify-content: center;
  display: flex;
  left: 10%;
  text-decoration: none;
  color: #000000de;
  font-family: "Open Sans", sans-serif;
  font-size: 0.875rem;
  font-weight: 700;
  transition: all 300ms ease;
}

header .header-link-back-icon {
  width: 1rem;
  margin-right: 4px;
}

header .header-link-back:hover {
  text-decoration: underline;
}

footer {
  background: var(--footer-background-color);
  display: flex;
  flex-direction: column;
  align-items: center;
  min-height: 100px;
  padding: 48px 24px;
}

footer .footer-title {
  color: #ffffffde;
  margin: 0px 0px 24px;
  font-weight: 600;
  font-size: 1.75rem;
  font-family: "Open Sans", sans-serif;
}

footer .footer-legal {
  display: flex;
  align-items: center;
  font-family: "Open Sans", sans-serif;
  color: #ffffffde;
}

footer .footer-legal a {
  text-decoration: none;
  font-size: 0.875rem;
  color: #ffffffde;
  transition: all 300ms ease;
  margin: 0 5px;
}

footer .footer-legal a:not(:last-child):after {
  content: "|";
  margin-left: 8px;
  color: #ffffffde !important;
}

footer .footer-legal a:hover {
  color: var(--secondary-color);
}

@media screen and (max-width: 768px) {
  header .header-link-back {
    left: 24px;
  }

  header .header-link-back-icon {
    width: 2.5rem;
    margin-right: 0px;
  }

  header .header-link-back-text {
    display: none;
  }

  footer .footer-legal {
    flex-direction: column;
  }

  footer .footer-legal a {
    margin: 8px 0px;
  }

  footer .footer-legal a:not(:last-child):after {
    content: none;
  }
}

@media screen and (max-width: 480px) {
  header {
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.2);
    justify-content: space-between;
    padding: 0px;
  }

  header .header-link-back {
    position: static;
    align-self: center;
    width: 100%;
  }

  header .header-logo-wrapper {
    width: 100%;
  }
}

@media screen and (max-width: 300px) {
  header .header-logo {
    max-width: 224px;
    padding: 24px;
  }
}
:root {
  
  --primary-font: "Open Sans", "Roboto", Calibri, sans-serif;
  --secondary-font: "Open Sans", "Roboto", Calibri, sans-serif;

  
  --primary-color: #1976d2;
  --secondary-color: #378fe7;
}