/*
|--------------------------------------------------------------------------
| Google Font
|--------------------------------------------------------------------------
*/

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap');

/*
|--------------------------------------------------------------------------
| Reset
|--------------------------------------------------------------------------
*/

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/*
|--------------------------------------------------------------------------
| Body
|--------------------------------------------------------------------------
*/

body {

    font-family: 'Inter', sans-serif;

    background: var(--phc-bg);

    color: var(--phc-text);

    line-height: 1.5;

}

/*
|--------------------------------------------------------------------------
| Links
|--------------------------------------------------------------------------
*/

a {

    text-decoration: none;

    color: inherit;

}

/*
|--------------------------------------------------------------------------
| Images
|--------------------------------------------------------------------------
*/

img {

    max-width: 100%;

    display: block;

}

/*
|--------------------------------------------------------------------------
| Containers
|--------------------------------------------------------------------------
*/

.phc-container {

    width: 100%;

    max-width: var(--phc-container-width);

    margin: 0 auto;

    padding: 0 16px;

}