:root {
  --background-color: #f9f9f9;
  --text-color: #6b6b6b;
  --boder-color: #366FA5;
  --link-hover-color: black;
  --button-text-color: white;
  --button-hover-color: black; /*#71a4d4; - ligher blue */
}

/* 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;
}


/* site styles */
*, ::after, ::before {
  box-sizing: border-box;
}
h1 {
  font-size: 2rem;
  margin: 2rem 0;
}
small {
  font-size: 75%;
}
h2 {
  font-size: 1.6rem;
  margin: 1rem 0;
}
h3 {
  font-size: 1.4rem;
  margin: 1rem 0;
}
h4 {
  font-size: 1.1rem;
  margin: .75rem 0;
}
a {
  color: var(--link-color);
}
a:where(:active, :focus, :hover) {
  color: black;
}
button, input[type=button], input[type=submit] {
  border: 1px solid var(--link-color);
  background-color: #366FA5;
  color: var(--button-text-color);
  padding: .5rem 1rem;
  margin: 0 1rem 1rem 0;
  border-radius: 1.5rem;
}
button:hover, input[type=button]:hover, input[type=submit]:hover {
  border: 1px solid var(--button-hover-color);
  background-color: var(--button-hover-color);
}
input, select, textarea {
  width: 100%;
  margin-bottom: .75rem;
  border: 1px solid var(--boder-color);
  padding: .25rem .5rem;
  border-radius: .25rem;
  font-size: 1.1rem;
}
label {
  display: block;
  margin-left: .25rem;
  font-size: .9rem;
}
p {
  margin-bottom: 1rem;
}

/* page sections */
body {
  font-family: Montserrat, Arial, sans serif;
  font-size: 1.1rem;
  color: var(--text-color);
  line-height: 150%;
  accent-color: var(--link-color);
}

main {
  background-color: var(--background-color);
}
main > section {
  max-width: 1100px;
  margin: 8px auto 0;
  padding: 1rem 1rem 3rem 1rem;
}

/* other site styles */
.home-tool-btn {
  font-size: 1.3rem;
  display: block;
  margin-bottom: .5rem;
  width: 200px;
}

input[name="website"] {
  display: none;
}

form.inline input {
  display: inline;
}
form.inline label {
  display: inline;
}