/*
Theme Name: Recettes simples
Theme URI: N/A
Author: Webup
Description: Theme wordpress sur mesure
Version: 1.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: minimaliste
*/

:root {
    --max-width: 1400px;

    --background: #FFFBF7;
    --white: #FFFFFF;
    --gray: #786A6A;
    --black: #333333;

    --secondary: #D69E83;

    --primary: #B64544;
    --primary-dark: #A63C3B;
}

body {
    margin: 0;

    font-family: 'Inter', sans-serif;
    line-height: 1.5;
    font-size: 18px;

    color: var(--black);
    background-color: var(--background);

    padding: 16px;
}

main {
    padding-bottom: 60px;
    min-height: calc(100vh - 32px - 40px);
}

/***************/
/*** Helpers ***/
/***************/
.text-secondary {
    color: var(--secondary);
}

/***************/
/** Css reset **/
/***************/

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

/* Remove default margin and padding */
h1, h2, h3, h4, h5, h6,
p, blockquote, pre,
dl, dd, ol, ul, figure,
fieldset, legend, textarea, input, select {
    margin: 0;
    padding: 0;
}

h1, h2, h3, h4, h5, h6 {
    line-height: 1;
}

/* Remove list styles */
ul, ol {
    list-style: none;
}

/* Remove quotes from blockquote/cite */
blockquote, q {
    quotes: none;
}

/* Table resets */
table {
    border-collapse: collapse;
    border-spacing: 0;
}

/* Remove border from images, inputs, buttons */
img, fieldset, input, textarea, button {
    border: 0;
}

/* Remove default font styling for inputs/buttons */
button, input, select, textarea {
    font-family: inherit;
    font-size: inherit;
    line-height: inherit;
}

/* Anchor defaults */
a {
    text-decoration: none;
    color: inherit;
}

/* Make images responsive */
img {
    max-width: 100%;
    height: auto;
    display: block;
}
