:root {
  --charcoal-grey: #303438;
  --slate-grey: #646e78;
  --light-blue-grey: #c1cad1;
  --dark-green: #009640;
}

* {
  box-sizing: border-box;
}

html {
  height: 100%;
}

body {
  font-family: 'Roboto', sans-serif;
  line-height: 1.33;
  background-image: url("./bg-1920.jpg");
  background-repeat: no-repeat;
  background-position: right bottom;
  background-size: contain;
  height: 100%;
  margin: 0;
}

main {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 1.5rem 3rem 1.5rem 1.5rem;
  min-height: 100%;
}

a {
  text-decoration: none;
}

.logo {
  width: 5.5rem;
  height: auto;
}

.cookie-banner {
  height: 6.8rem;
  box-shadow: 0 0.25rem 0.5rem 0 rgba(0, 0, 0, 0.16);
  background-color: #eff6fa;
  position: absolute;
  width: 100%;
  color: var(--charcoal-grey);
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-around;
}

.cookie-banner--hidden {
  display: none;
}

.cookie-banner__image {
  margin: 0.4rem 4rem 0 2.6rem;
  fill: var(--charcoal-grey);
  width: 4rem;
  height: auto;
}

.cookie-banner__text {
  width: 60%;
}

.cookie-banner__link {
  text-decoration: underline;
}

.cookie-banner__button {
  width: 6.7rem;
  line-height: 2.6rem;
  background-color: var(--slate-grey);
  margin: 2.6rem 5rem 2.6rem auto;
  color: #fff;
  border-radius: 0.2rem;
  border: none;
}

.content__container {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.content {
  width: 45%;
  padding-left: 1rem;
}

.content__headline {
  color: var(--dark-green);
  margin-top: 0;
  margin-bottom: 0.5rem;
}

.content__link-container {
  margin-bottom: 3rem;
  display: flex;
}

.content__link {
  min-width: 20rem;
  color: #fff;
  border-left: 1rem solid var(--dark-green);
  display: block;
  padding: 1rem 0 1rem 1rem;
}

.content__employee-link {
  background-color: var(--charcoal-grey);
}

.content__consultant-link {
  background-color: var(--slate-grey);
}

.content__company-link {
  background-color: var(--light-blue-grey);
}

.footer {
  display: flex;
  justify-content: flex-end;
}

.footer__link {
  color: var(--slate-grey);
}

.footer__link + .footer__link{
  margin-left: 1rem;
}

@media (min-width: 1024px) and (max-width: 1439px) {
  html, body {
    font-size: 10px;
  }

  h1 {
    font-size: 60px;
  }

  h3 {
    font-size: 33px;
  }

  p {
    font-size: 10px;
  }

  a {
    font-size: 8.5px;
  }

  .main__link {
    font-size: 13px;
  }

  .cookie-banner__text {
    font-size: 9px;
  }
}

@media (min-width: 1440px) and (max-width: 1919px) {
  html, body {
    font-size: 13px;
  }

  h1 {
    font-size: 77px;
  }

  h3 {
    font-size: 43px;
  }

  p {
    font-size: 13px;
  }

  a {
    font-size: 11px;
  }

  .main__link {
    font-size: 17px;
  }

  .cookie-banner__text {
    font-size: 12px;
  }
}

@media (min-width: 1920px) and (max-width: 2879px) {
  html, body {
    font-size: 17px;
  }

  h1 {
    font-size: 90px;
  }

  h3 {
    font-size: 50px;
  }

  p {
    font-size: 15px;
  }

  a {
    font-size: 13px;
  }

  .main__link {
    font-size: 20px;
  }

  .cookie-banner__text {
    font-size: 13.5px;
  }
}

@media (min-width: 2880px) {
  html, body {
    font-size: 26px;
  }

  body {
    background-image: url("./bg-3840.jpg");
  }

  h1 {
    font-size: 100px;
  }

  h3 {
    font-size: 56px;
  }

  p {
    font-size: 17px;
  }

  a {
    font-size: 15px;
  }

  .main__link {
    font-size: 22.5px;
  }

  .cookie-banner__text {
    font-size: 15px;
  }
}


