footer {
  background-color: #123450;

  text-align: center;
}

.footer-content {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.footer-logos {
  justify-content: center;
  display: flex;
  align-items: center;
  background: #132738;
  width: 100%;
  height: 100px;
}

.footer-text {
  justify-content: center;
  background: #0a2032;
  width: 100%;
  height: 60px;
  font-size: 16px;
  color: white;
  line-height: 16px;
  display: flex;
  align-items: center;
  flex-direction: column;
  line-height: 20px;
}

.footer-text a {
  color: white;
  text-decoration: none;
}

.footer-text a:hover {
  text-decoration: underline;
}
header {
  width: 100%;
  padding: 40px;
  background-color: #000;
}
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
:root {
  --color-primary: #123450;
  --color-secondary: #132738;
  --color-tertiary: #fbfbfb;
  --color-quaternary: #bd582c;
  --color-white: #ffffff;
}
html,
body {
  width: 100%;
  height: 100%;
  font-family: "Outfit", sans-serif;
  background: var(--color-primary);
}
