:root {
  --black: #000000;
  --white: #ffffff;
  --ltGrey: #e7e7e7;
  --mdGrey: #b1b1b1;
  --dkGrey: #696969;
  --charcoal: #34404b;
  --ltYellow: #ffffd6;
  --orange: #f49c14;
  --dkOrange: #cc5500;
  --crystal: #e5f5fc;
  --ltBlue: #4395c9;
  --dkBlue: #0f4357;
}

body {
  margin: 0;
  box-sizing: border-box;
  font-family: "Maven Pro", "Montserrat", sans-serif;
}

.layout-wrapper {
  width: 90%;
  margin: 0 auto;
}

a {
  font-size: 16px;
  font-weight: 500;
  color: var(--dkBlue);
  font-family: "Open Sans", sans-serif;
  text-decoration: none;
}

a:hover {
  color: var(--orange);
  font-weight: 700;
  cursor: pointer;
}

p {
  font-size: 16px;
  font-weight: 500;
  color: var(--charcoal);
  font-family: "Open Sans", sans-serif;
}

h1 {
  font-size: 32px;
  color: var(--dkBlue);
  font-weight: 500;
}

h2 {
  font-size: 28px;
  color: var(--ltBlue);
  font-weight: 600;
}

h3 {
  font-size: 24px;
  color: var(--dkGrey);
  font-weight: 600;
}

h4 {
  font-size: 22px;
  color: var(--orange);
}

h5 {
  font-size: 20px;
  color: var(--dkOrange);
}

h6 {
  font-size: 18px;
  color: var(--black);
}


@media screen and (min-width: 480px) {
  h1 {
    font-size: 36px;
  }
  
  h2 {
    font-size: 30px;
  }
  
  h3 {
    font-size: 26px;
  }
  
  h4 {
    font-size: 24px;
  }
  
  h5 {
    font-size: 22px;
  }
  
  h6 {
    font-size: 20px;
  }
}
@media screen and (min-width: 600px) {
  p, a {
    font-size: 18px;
  }

  h1 {
    font-size: 38px;
  }
  
  h2 {
    font-size: 32px;
  }
  
  h3 {
    font-size: 28px;
  }
  
  h4 {
    font-size: 26px;
  }
  
  h5 {
    font-size: 24px;
  }
  
  h6 {
    font-size: 22px;
  }
}
@media screen and (min-width: 768px) {
  h1 {
    font-size: 42px;
  }
  
  h2 {
    font-size: 36px;
  }
  
  h3 {
    font-size: 30px;
  }
  
  h4 {
    font-size: 28px;
  }
  
  h5 {
    font-size: 26px;
  }
  
  h6 {
    font-size: 24px;
  }
}
@media screen and (min-width: 900px) {
  h1 {
    font-size: 44px;
  }
  
  h2 {
    font-size: 38px;
  }
  
  h3 {
    font-size: 33px;
  }
  
  h4 {
    font-size: 30px;
  }
  
  h5 {
    font-size: 28px;
  }
  
  h6 {
    font-size: 25px;
  }
}
@media screen and (min-width: 1024px) {

  p, a {
    font-size: 20px;
  }

  h1 {
    font-size: 48px;
  }
  
  h2 {
    font-size: 40px;
  }
  
  h3 {
    font-size: 36px;
  }
  
  h4 {
    font-size: 32px;
  }
  
  h5 {
    font-size: 30px;
  }
  
  h6 {
    font-size: 26px;
  }
}
@media screen and (min-width: 1200px) {
  .layout-wrapper {
    width: 80%;
  }

  h1 {
    font-size: 50px;
  }
  
  h2 {
    font-size: 42px;
  }
  
  h3 {
    font-size: 38px;
  }
  
  h4 {
    font-size: 34px;
  }
  
  h5 {
    font-size: 32px;
  }
  
  h6 {
    font-size: 27px;
  }
}
@media screen and (min-width: 1500px) {
  h1 {
    font-size: 53px;
  }
  
  h2 {
    font-size: 44px;
  }
  
  h3 {
    font-size: 40px;
  }
  
  h4 {
    font-size: 36px;
  }
  
  h5 {
    font-size: 34px;
  }
  
  h6 {
    font-size: 28px;
  }
}
@media screen and (min-width: 1650px) {
  p, a {
    font-size: 22px;
  }

  h1 {
    font-size: 56px;
  }
  
  h2 {
    font-size: 48px;
  }
  
  h3 {
    font-size: 42px;
  }
  
  h4 {
    font-size: 38px;
  }
  
  h5 {
    font-size: 35px;
  }
  
  h6 {
    font-size: 29px;
  }
  
}