/* 
--- 01 TYPOGRAPHY SYSTEM
- Font sizes (px)
10 / 12 / 14 / 16 / 18 / 20 / 24 / 30 / 36 / 44 / 52 / 62 / 74 / 86 / 98

-Spacing system (px)
2 / 4 / 8 / 12 / 16 / 24 / 32 / 48 / 64 / 80 / 96 / 128

- Font weights
    Default: 400
    Medium: 500
    Semi-bold: 600
    Bold: 700

- Line heights
    default: 1px

- Letter spacing

- Word spacing
    2px

--- 02 COLORS
- Primary:
    White: hsl(0, 0%, 100%)
    Black: hsl(0, 0%, 0%)
    Dark Gray: hsl(0, 0%, 55%)
    Very Dark Gray: hsl(0, 0%, 41%)

--- 06 WHITESPACE

*/


* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

html {
    font-size: 62.5%;
}

body {
    font-family: 'Alata', sans-serif;
    line-height: 1;
    font-weight: 400;
    color: hsl(0, 0%, 55%);
    font-size: 1.5rem;
}


/***********************************************/
/* GENERAL REUSABLE COMPONENTS */
/***********************************************/
.container {
    width: 100%;
    max-width: 144rem;
    padding: 8rem 16rem;
}

.default-text1 {
    font-family: 'Alata', sans-serif;
    text-transform: uppercase;
    color: #000;
}

.default-text2 {
    font-family: 'Josefin Sans', sans-serif;
    text-transform: uppercase;
    color: #000;
}

.flex {
    display: flex;
    justify-content: space-between;
}

.btn:link, 
.btn:visited {
    display: inline-block;
    background-color: #e67e22;
    font-size: 2rem;
    font-weight: 600;
    text-decoration: none;
    padding: 1.6rem 3.2rem;
    border-radius: 9px;
    /* transition: background-color 0.3s; */
    transition: all 0.3s;
}
