* {
   -webkit-box-sizing: border-box;
   -moz-box-sizing: border-box;
   -ms-box-sizing: border-box;
   box-sizing: border-box;
}

body {
  font-family: BarlowRegular;
  color: #101010;
  line-height: 1.6;
  background-color: white;
}

.headerWrapper {
  background-color: #eff6ff;
}

  .headerContent {
    display: block;
    margin-left: auto;
    margin-right: auto;
    width: 100%;
    max-width: 1200px;
    padding: 64px 0px 32px 0px;
  }

    h1 {
          font-size: 64px;
          font-weight: 700;
          line-height: 1.0;
          color: rgba(69, 113, 174, 1.0);
          font-family: Logo;
          letter-spacing: 2px;
        }

    h3 {
      text-transform: uppercase;
      color: rgba(0, 0,0 ,0.4);
      margin-bottom: 4px;

    }

    .subline {
      margin-top: 48px;
    }

    .quoteText {
      font-size: 38px;
      line-height: 1.2;
      font-family: Handschrift;
    }

    .contactInfo {
      display: flex;
      margin-top: 4px;
      gap: 16px;
    }

        a {
          color: rgba(69, 113, 174, 1);
        }

        a:hover {
          color: rgba(69, 113, 174, 0.8);
        }

        a:active {
          color: rgba(69, 113, 174, 0.6);
        }

.contentWrapper {
  display: block;
  margin-left: auto;
  margin-right: auto;
  max-width: 1200px;
}

  .paragraph {
    margin-top: 32px;
  }

  .headlineImage {
    background-image: url("../assets/uwe.jpg");
    background-size: cover;
    background-position: 50% 50%;
    color: white;

    width: 100%;
    height: 777px;
  }

    .quoteContainer {
      display: grid;
      align-items: end;
      width: 100%;
      height: 100%;
    }

      .quoteText {
        padding: 64px;
        text-shadow: #000 1px 0 10px;
        background: linear-gradient(180deg, rgba(0,0,0,0) 0%, rgba(0,0,0,0.5) 100%)
      }

  .textGrid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, 1fr);
    grid-column-gap: 32px;
    grid-row-gap: 32px;
    margin-bottom: 64px;
  }

  .textTile {
    width: 100%;
    padding: 16px 32px;
    border-radius: 4px;
    background-color: #f0efec;
  }

  h2 {
    font-family: BarlowMedium;
    font-size: 30px;
    margin-bottom: 16px;
  }

  p {
    font-size: 16px;
  }

.footerWrapper {
    background-color: #eff6ff;
}

  .footer {
    gap: 16px;
    padding: 16px;
    display: flex;
    margin-left: auto;
    margin-right: auto;
    width: 100%;
    max-width: 1200px;
  }
