/* Montserrat font files (place .woff/.woff2 in ./fonts) */
@font-face {
  font-family: 'Montserrat';
  src: url('./fonts/Montserrat-Regular.woff2') format('woff2'),
       url('./fonts/Montserrat-Regular.woff') format('woff');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Montserrat';
  src: url('./fonts/Montserrat-Bold.woff2') format('woff2'),
       url('./fonts/Montserrat-Bold.woff') format('woff');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

:root {
  --container-max-width: 820px;

  --page-background-color: #5E747D;
  --text-color: #FFFFFF;
  
  --font-family: 'Montserrat', sans-serif;
  --font-weight-regular: 400;
  --font-weight-bold: 700;
  --font-size-desktop: 18px;
  --font-size-mobile: 14px;
  --line-height: 1.77;
  --line-height-mobile: 1.85;
}

body {
  background-color: var(--page-background-color);
  color: var(--text-color);
  font-family: var(--font-family);
  line-height: var(--line-height-mobile);
  font-size: var(--font-size-mobile);

  @media screen and (min-width: 750px) {
    font-size: var(--font-size-desktop);
    line-height: var(--line-height);
  }
}

.container {
  max-width: var(--container-max-width);
  margin: 0 auto;
  padding: 20px;
}

.landing-page-section {
  display: flex;
  height: 100%;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.landing-page-content {
  padding-block: 30px;

  @media screen and (min-width: 750px) {
    padding-block: 37px;
  }
}

.logo {

  img {
    width: 100%;
    height: 100%;
    margin-inline: auto;
    max-width: 260px;
    max-height: 184px;

    @media screen and (min-width: 750px) {
      max-width: 405px;
      max-height: 287px;
    }
  }
}

.footer-logo {
    img {
      width: 100%;
      height: 100%;
      margin-inline: auto;
      max-width: 150px;
      max-height: 62px;

    @media screen and (min-width: 750px) {
      max-width: 177px;
      max-height: 74px;
    }
  }
}