:root {
--main-color: #2E3991;
--lightgray: #F0F0F0;
--grayoutline: lightgray;
--main-font: helvetica;
--header-font: 'Brush Script MT', cursive;
}

* {
	margin:0;
	padding: 0;
	font-size: 16px;
	box-sizing: border-box;
	font-family: var(--main-font);
}

.page-container {
  margin-top: 5rem;
  background-color: white;
}

.content-container {
  margin: 0 auto;
  width: 84vw;
}

.page-header {
  font-size: 1.7rem;
  color: var(--main-color);
  margin: 3rem 0 1rem 0;
  display: inline-block;
  font-weight: 500;
}

.paragraph {
	margin: 0.5rem 0;
	width: 80%;
	min-width: 400px;
	line-height: 2.5rem;
	font-size: 1.2rem;
	font-weight: 100;
	text-align: center;
}

.navbar {
	position: fixed;
	display: flex;
	justify-content: space-between;
	align-items: center;
	top: 0;
	width: 100vw;
	height: 5rem;
  	background-color: white;
  	z-index: 1;
  	padding-left: 2%;
}

.navbar-list {
	display: flex;
	justify-content: space-around;
	align-items: center;
	width: 50%;
}

.navbar-button {
	background-color: var(--main-color);
	padding: 15px;
	border-radius: 10px;
	color: white;
	text-decoration: none;
}

.navbar-button:hover {
	background-color: var(--lightgray);
	color: var(--main-color);
	border: 0.5px solid var(--main-color);
}

.logo {
	height: 65px;
	width: auto;
}

.spaced-header {
	color: var(--main-color);
	display: inline-block;
	font-size: 1.3rem;
	font-weight: 500;
	letter-spacing: 0.2rem;
}

footer {
  display: flex;
  flex-direction: column;
  width: 100%;
  min-height: 8rem;
  background-color: var(--lightgray);
  justify-content: space-around;
  align-items: center;
}

.footer-top {
	display: flex;
	width: 10%;
	justify-content: space-around;
	align-items: center;
	margin-top: 0.5rem;
}

.footer-list {
	display: flex;
	width: 70%;
	justify-content: space-around;
}

.footer-link, .navbar-link {
	text-decoration: none;
	color: var(--main-color);
}

.navbar-link {
	position: relative;
	transition: color .3s ease-in-out;
}

.navbar-link:hover {
	color: var(--main-color);
}


.navbar-link:before {
content: '';
position: absolute;
top: 100%;
width: 100%;
height: 1.5px;
background-color: var(--main-color);
transform: scaleX(0);
transition: transform .3s ease-in-out;
}

.navbar-link:hover:before {
transform: scaleX(1);
}

.footer-link {
position: relative;
transition: color .3s ease-in-out;
}

.footer-link:hover {
color: var(--main-color);
}

.footer-link:before {
content: '';
position: absolute;
top: 100%;
width: 100%;
height: 1.5px;
background-color: var(--main-color);
transform: scaleX(0);
transition: transform .3s ease-in-out;
}

.footer-link:hover:before {
transform: scaleX(1);
}

.footer-bottom {
display: flex;
width: 100%;
justify-content: center;
}

.sm-icon {
width: 25px;
height: 25px;
}

.just-cr8if {
font-size: 0.75rem;
color: #333333;
font-weight: 550;
text-decoration: none;
}

.inverted-button {
background-color: var(--lightgray);
padding: 15px;
border-radius: 10px;
color: var(--main-color);
text-decoration: none;
max-width: 215px;
display: flex;
justify-content: center;
letter-spacing: 0.1rem;
margin-top: 0.5rem;
box-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
}

.inverted-button:hover {
background-color: var(--main-color);
color: var(--lightgray);
border: 0.5px solid var(--main-color);
}

@media (max-width: 768px) {
.navbar-list {
width: 75%;
}
.navbar-list a {
font-size: 12px;
}
.navbar-link {
width: 15vw;
}
.logo {
width: 106px;
height: 30px;
margin-right: 5vw;
}
.navbar-button {
display: flex;
justify-content: center;
align-items: center;
padding: 12px;
border-radius: 10px;
margin-left: 1vw;
text-align: center;
}
.footer-link {
display: flex;
justify-content: center;
font-size: 10px;
margin: 0 1vw;
}
.navbar-link:before {
content: none;
}
.footer-top {
width: 20%;
}
.footer-list {
width: 90%;
}
.footer-link:before {
    content: none;
  }
}

@media (max-width: 480px) {
.navbar-list {
width: 100%;
}
.navbar-list a {
font-size: 10px;
}
.navbar-link {
width: 15vw;
}
.logo {
width: 84.8px;
height: 24px;
margin-right: 2vw;
}
.navbar-button {
display: flex;
justify-content: center;
align-items: center;
padding: 8px;
border-radius: 10px;
text-align: center;
}
.footer-link {
display: flex;
justify-content: center;
font-size: 10px;
width: 20vw;
}
.navbar-link:before {
content: none;
}
.footer-top {
width: 25%;
}
.footer-list {
width: 90%;
}
.footer-link:before {
    content: none;
  }
}