/* 

- Colors -

Grey color:
tekst - #424242

White color:
#FFFFFF

Primary:
#003057
#11284B

Accent color:
Licht goud - #FFE37E
Donker goud - #F9B000

Tints:

- Fonts -
Charter
Rale way

 */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 62.5%;
    scroll-behavior: smooth;
    overflow-x: hidden;
}

h1,
h2,
h3 {
    font-family: "Charter-Regular", sans-serif;
}

@font-face {
    font-family: "Charter-Regular";
    src: url("../fonts/Charter-Regular.ttf");
}

@font-face {
    font-family: "Charter-Bold";
    src: url("../fonts/Charter-Bold.ttf");
}

@font-face {
    font-family: "Charter-Italic";
    src: url("../fonts/Charter-Italic.ttf");
}

@font-face {
    font-family: "Charter-Bold-Italic";
    src: url("../fonts/Charter-Bold-Italic.ttf");
}

body {
    font-family: "Raleway", sans-serif;
    color: #424242;
    font-size: 2rem;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: #fff;
}

button {
    cursor: pointer;
}

p {
    letter-spacing: .1rem;
}

/* ****************************** */
/* GENERAL REUSABLE COMPONENTS */
/* ****************************** */

.container {
    /* 1140px */
    max-width: 120rem;
    margin: 0 auto;
    padding: 0 3.2rem;
}

.grid {
    display: grid;
    row-gap: 9.6rem;
    column-gap: 6.4rem;
}

.grid--2-cols {
    grid-template-columns: repeat(2, 1fr);
}

.grid--3-cols {
    grid-template-columns: repeat(3, 1fr);
}

.grid--4-cols {
    grid-template-columns: repeat(4, 1fr);
}

.grid--5-cols {
    grid-template-columns: repeat(5, 1fr);
}

.hidden {
    display: none;
}