* {
    margin: 0;
    padding: 0;
}
:root {
    --heading-color: #4A79AF;
    --text-color: #456E9F;
    --bg-color: #F8F9FB;
    --primary-color: #E1ECF7;
    --secondary-color: #AECBEB;
    --accent-color: #83B0E1;
    --blog-text-color: #222222;
}

section {
    padding: 5vh 0 0 0;
    background-color: var(bg-color);
    text-align: center;
    width: clamp(100px, 75%, 600px);
    margin: 0 auto 0 auto;
    line-height: 1.6;
}
h2, p, li {
    margin-bottom: 1rem;
}
h1 {
    margin: 0 auto 0 auto;
    line-height: 1.2;
    font-size: clamp(1.5rem, 4vw, 2rem);
}
h1,h2 {
    color: var(--heading-color);
    max-width: 25vw;
}
h2 {
    padding-bottom: .5rem;
    margin-bottom: 1rem;
    border-bottom: 5px dotted var(--accent-color);
    font-size: clamp(1.25rem, 2vw, 2rem);
}
img {
    width: clamp(50px, 20vw, 150px);
    height: clamp(50px, 20vw, 150px);
    border-radius: 50%;
    border: 5px solid var(--accent-color);
}
p, li {
    color: var(--text-color);
}
.big-quote {
    font-size: clamp(1.25rem, 2vw, 2rem);
    box-shadow: 0 10px 30px 0 var(--secondary-color);
    border-radius: 50px;
    padding: 30px 15px;
}
.align-left h2, .align-left li {
    text-align: left;
}


.hero-card {
    margin: 0 auto 0 auto;
    border: 5px solid var(--accent-color);
    border-radius: 50px;
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding: 30px 15px;
}

.blog-container {
    display: flex;
    justify-content: center;
    align-content: center;
    border: 5px solid var(--accent-color);
    border-radius: 50px;
}
.recent-blog {
    text-align: center;
    max-width: 100%;
    padding: 30px;
}
.recent-blog h2 {
    border-bottom: none;
    text-decoration: underline;
    max-width: 100%;
}
.recent-blog p {
    margin-bottom: 0;
}
.hero-right p {
    padding: 0.5rem 0;
}
.contact-buttons {
    display: flex;
    justify-content: space-around;
}
footer {
    display: flex;
    justify-content: space-around;
    background-color: var(--primary-color);
    padding: 2.5vh 0;
}
footer p {
    margin: 0;
}
/* this is so cursed */
footer div p a {
    text-decoration: underline;
}
.zero-bottom-m {
    margin-bottom: 0;
}
.fivevh-bottom-m {
    margin-bottom: 5vh;
}
/* what the font */
.quicksand-medium {
  font-family: "Quicksand", sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
}
/* button styling lol */
/*Button Styles*/
button {
	padding: 0.7rem 2rem;
	color: var(--text-color);
  background: var(--primary-color);
	border-radius: 100px 100px 100px 0;
	font-size: 0.875rem;
	letter-spacing: 1px;
	line-height: 2.188rem;
	-webkit-box-shadow: 0 10px 30px 0 var(--secondary-color);
	-moz-box-shadow: 0 10px 30px 0 var(--secondary-color);
	box-shadow: 0 10px 30px 0 var(--secondary-color);
    border: 0px;
    cursor: pointer;
}
a {
    color: inherit;
    text-decoration: none;
}
/* for blog.html only */
.title-subtitle {
    margin: 0 auto 0 auto;
    text-align: center;
    border-bottom: 5px dotted var(--accent-color);
}
.title-subtitle h1 {
    max-width: 100%;
    margin-bottom: 1rem;
}
.title-subtitle p {
    margin-bottom: 1rem;
}
.blog-text {
    text-align: left;
}
.blog-text blockquote {
  background: var(--primary-color);
  color: var(--blog-text-color);
  border-left: 10px solid var(--secondary-color);
  margin: 1.5em 10px;
  padding: 0.5em 10px;
  quotes: "\201C""\201D""\2018""\2019";
}
.blog-text blockquote:before {
  color: var(--accent-color);
  content: open-quote;
  font-size: 4em;
  line-height: 0.1em;
  margin-right: 0.25em;
  vertical-align: -0.4em;
}
.blogtext blockquote p {
  display: inline;
}
.blog-text p {
    text-indent: 2em;
    line-height: 1.6;
    color: var(--blog-text-color);
}
.blog-text a {
    text-decoration: underline;
    text-decoration-color: var(--blog-text-color);
}