/* CSS BY Jeanne Tucker */

@import url('https://fonts.googleapis.com/css2?family=Indie+Flower&family=Rock+Salt&display=swap');

/* CSS RESET */
/* http://meyerweb.com/eric/tools/css/reset/
v2.0 | 20110126
License: none (public domain)
*/
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font: inherit;
    vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
    display: block;
}
body {
    line-height: 1;
}
ol, ul {
    list-style: none;
}
blockquote, q {
    quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
    content: '';
    content: none;
}
table {
    border-collapse: collapse;
    border-spacing: 0;
}

/* ROOT VARIABLES */
:root {
    --off-white: #f7f8f5;
    --dusty-pink: #b89599;
    --dusty-violet: #c3b1be;
    --pink: #d05896;
    --violet-blue: #5161a7;
    --charcoal: #333333;
    --header-font: "Rock Salt", sans-serif;
    --font: "Indie Flower", serif;
}

/* GLOBAL STYLES (MOBILE FIRST) */

body {
    background-image: url('images/background.png');
    font-family: var(--font);
    font-size: 10pt;
    line-height: 1.5;
    margin: 0 auto;
    min-width: 400px;
    color: var(--charcoal);
    padding: 20px;
    max-width: 100%;
}

h1{
    font-size: 40px;
    font-weight: bold;
    color: var(--violet-blue);
    text-align: center;
}

h2 {
    font-weight: 800;
    font-size: 24px;
    text-decoration: underline;
    text-align: center;
}

nav {
    padding: 2.5px 5px 7.5px 0px;
    text-align: center;
}

nav li {
    list-style: none;
    display: inline-block;
    padding: 2.5px;
}

nav ul {
    padding: 0px 25px;
}

nav a {
    text-decoration: none;
    background-color: var(--dusty-pink);
    text-align: center;
    color: var(--off-white);
    text-transform: lowercase;
    font-weight: bold;
    padding: 5px 30px;
    border-top-left-radius: 7.5px;
    border-bottom-right-radius: 7.5px;
}

nav a:hover {
    background-color: var(--dusty-violet);
}

#about {
    /* max-width: 68ch; */
    text-align: justify;
}

#about p {
    background-color: var(--off-white);
    padding: 10px;
    margin:10px;
    border-radius:7px;
    max-width: 70ch;
    margin: 0 auto;
}

#services {
    padding: 15px 7px;
    align-items: center;
    text-align: center;
}

.service {
    display: inline-block;
    background-color: var(--dusty-pink);
    text-align: center;
    color: var(--off-white);
    text-transform: lowercase;
    font-weight: bold;
    padding: 5px 8px;
    border-top-left-radius: 7.5px;
    border-bottom-right-radius: 7.5px;
}

form {
    display: flex;
    flex-direction: column;
    max-width: 50%;
    margin: 0 auto;
}

textarea {
    padding: 20px;
    margin-bottom: 15px;
}

#form-submit {
    background-color: var(--dusty-pink);
    color: var(--off-white);
    text-decoration: none;
    font-size: 15px;
    font-weight: bold;
    text-transform: lowercase;
    border: none;
    cursor: pointer;
    padding: 7.5px 10px;
    border-radius: 7.5px;
}

#form-submit:hover {
    background-color: var(--dusty-violet);
    scale: 1.25;
}
 
footer {
    padding: 30px 0px 10px;
    text-align: center;
}

#email, #tel {
    text-decoration: none;
    color: var(--charcoal);
}

/* RESPONSIVE STYLES */

/* MEDIUM */
@media (min-width: 600px) {
    body {
        max-width: 750px;
    }
}

/* LARGE */
@media (min-width: 900px) {
    body {
        max-width: 1200px;
    }
}

/* XL */
@media (min-width: 1200px) {
    body {
        max-width: 1800px;
    }
}
