/*CSS BY AUGUST ALVARADO*/
/*IMPORTED FONTS*/
@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Kavoon&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*/

:root {
    --teal: #4ca7c0;
    --purple: #484fb7;
    --lavender: #6b8fe7;
    --yellow: #e9bb57;
    --pink: #d9526f;
    --dark-gray: #1e1e1e;
    --white:#ffffff;
    font-family: 'Inter', sans-serif;
	background-color: var(--lavender);
}
/*GLOBAL STYLES*/

body {
	margin: 0 auto;
	max-width: 450px;
	background-color: var(--purple);
}

header {
	text-align: center;

}

header p {
	color: var(--white);
	padding: 10px;


}

h1, h2 {
	font-family: 'Kavoon', cursive;
	color: var(--white);
}

h1 {
	font-size: 3em;
	padding-top: 15px;
	padding-bottom: 5px;
}



h2 {
	font-size: 2em;
	font-weight: bold;

}

h3 {
	font-size: 1.5em;
	color: var(--yellow);
}

h4 {
	font-size: 1.15em;
	color: var(--purple);
	font-weight: bold;
	padding: 8px;
	padding-bottom: 10px;
}

nav h2{
	font-size: 1.5em;
	color: var(--dark-gray);
	margin: 0;
}

nav {
	background-color: var(--yellow);
	padding: 10px;
}

nav a {
	color: var(--purple);
	background-color: var(--white);
	text-decoration: none;
	display: inline-block;
	padding: 5px 10px;
	width: 75%;
	row-gap: 20px;
}

#our-services {
	background-color: var(--purple);
}

#our-services h3 {
color: var(--yellow);
}

#our-services div {
	background-color: var(--white);
	margin: 20px;
	padding: 20px;
	border-radius: 15px;
}


#why-choose-us {
	background-color: var(--pink);
}

table {
	margin-left: auto;
	margin-right: auto;
	width: 50%;
}

th {
	background-color: var(--yellow);
	color: var(--dark-gray);
	font-weight: bold;
	padding: 10px;
}

td {
	background-color: var(--white);
	color: var(--dark-gray);
	padding: 10px;
	border: 1px solid var(--yellow);
}

#firststep {
	background-color: var(--pink);
}

#firststep p {
	color: var(--white);
	padding: 20px;
}

#firststep a {
	background-color: var(--white);
	color: var(--dark-gray);
	border-radius: 5px;
	text-decoration: none;
	display: inline-block;
	justify-content: center;
}