:root {
    --white: #f5f1f0;
    --black: #222222;
    --heading: "Julius Sans One", sans-serif;
    --subheading: "Montserrat", sans-serif;
  }

* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

[class*=col] { padding: 0; }
[class*=grid] { margin: 0; }

body {
    color: var(--black);
    background-color: var(--white);
}

h1 {
    font-size: 6rem;
    font-family: var(--heading);
    font-style: normal;
    font-weight: 400;
    line-height: 1.1;
    text-align: center;
    letter-spacing: 0.01em;
    margin-bottom: 0.8rem;
}

h2 {
    font-size: 4rem;
    font-family: var(--heading);
    font-style: normal;
    font-weight: 400;
    line-height: 1;
    text-align: center;
    letter-spacing: 0.20em;
    margin-bottom: 2rem;
}

h3 {
    font-size: 2.2rem;
    font-family: var(--subheading);
    font-style: normal;
    font-weight: 300;
    line-height: 1;
    text-align: center; 
}

.bg-paris { background-image: url('/images/polygon-travel-paris.jpg'); }

.bg-image {
    background-color: var(--black);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    min-height: 100vh;
}

.padding { padding: 5% 0; }

@media (max-width: 48em) { 
    
    h1 { font-size: 5.5rem; }
    h2 { font-size: 3.5rem; }
    h3 { font-size: 2rem;   }
}