
/**  CSS RESET **/

*, *::after, *::before {
    box-sizing: border-box;
}

:root {
    --color-primary-dark: #202124;
    --color-primary-light: #f7f7f7;
    --color-primary-accent-red: #ea3d3d;
    --color-primary-accent-purple: #aa5bEb;
    --color-text-dark: #202124;
    --color-text-light: #fff;

    --header-height: 3rem;
    --spacing: 1rem;
}

body {
    margin: 0;
    font-size: 100%;
    font-family: 'Rubik', Arial, sans-serif;
}

h1,
h2,
h3,
h4 {
    font-family: 'Rubik', Arial, sans-serif;
    font-weight: 700;
}

p {
    font-family: 'Rubik', Arial, sans-serif;
    font-weight: 400;
}

a {
    color:#aa5bEb;
    text-decoration: none;
    transition: all 0.3s ease-in-out;
}

    a:hover {
        color: #ea3d3d;
        text-decoration: underline;
    }



/** GRID LAYOUT **/

.container {
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}