html, body {
	margin: 0;
	padding: 0;
	font-family: 'Open Sans', sans-serif;
	background-color: #e6edf7;
}
/* Page has a statue of liberty background, and then a semi-transparent content container */
.full-page {
	min-height: 100vh;
	padding: 13px;
	background-image: url("bg.webp");
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center;
}
.content-container {
	background-color: rgba(255, 255, 255, 0.90);
	border-radius: 15px 15px 0px 0px;
	min-height: 80vh;
}
/* gradient from top to bottom, #5BF676 to #03BF25 */
.green-header {
	background-position: 0%;
	color: #FFFFFF;
	display: flex;
	align-items: center;
	padding: 6px 10px;
	align-items: center;
	font-size: 14px;
	font-weight: bold;
	background-color: #5d8eff;
}
.us-flag {
	/* Ensures the flag is aligned to the left */
	flex-shrink: 0;/* Prevent the flag from shrinking */
}
.center-text {
	flex-grow: 1;
	/* Allows the text container to take up available space */
	display: flex;
	justify-content: center;
	/* Centers the text horizontally */
	align-items: center;/* Centers the text vertically, if needed */
}
.persistent-headline {
	font-size: 29px;
	font-weight: bold;
	padding: 30px 20px 0px;
	text-align: center;
	color: #5d8eff;
}
/** Button Styles */

.button-positive {
	background-color: #5d8eff;
	color: white;
	padding: 30px 10px;
	border-radius: 5px;
	text-align: center;
	margin: 10px;
	font-size: 30px;
	font-weight: bold;
	margin-bottom: 20px;
	cursor: pointer;
}
.button-negative {
	border: 3px solid #5d8eff;
	color: #5d8eff;
	padding: 10px 10px;
	border-radius: 5px;
	text-align: center;
	margin: 10px;
	font-size: 30px;
	font-weight: bold;
	background-color: rgba(255, 255, 255, 0.4);
	cursor: pointer;
}
/** Form **/
.form-container {
	padding: 20px;
	font-size: 20px;
	text-align: center;/* background-color: red; */
}
.question {
	font-size: 24px;
	font-weight: bold;
	margin-bottom: 20px;
}
.page-number {
	font-size: 15px;
	margin-bottom: 10px;
}
/** Bottom Bar **/

.bottom-bar {
	background-color: #525252;
	padding: 5px;
	text-align: center;
	border-radius: 0px 0px 15px 15px;
	color: #fff;
}
@keyframes throb {
0% {
transform: scale(1);
}
50% {
transform: scale(1.2);
}
100% {
transform: scale(1);
}
}
.throbbing {
	display: inline-block;
	color: red;
	animation: throb 1.5s infinite;
}
.congrats {
	border-radius: 15px 15px 0 0;
	background: #5d8eff;
	color: #fff;
	font-weight: bold;
	padding: 5px;
	border-top: 1px solid #5d8eff;
	border-left: 1px solid #5d8eff;
	border-right: 1px solid #5d8eff;
}
.last-page-card {
    background-color: #fff;
    padding: 13px;
    border-radius: 0 0 15px 15px;
    border-bottom: 1px solid #5d8eff;
    border-left: 1px solid #5d8eff;
    border-right: 1px solid #5d8eff;
}
.footer {
	background-color: #1c1c1c;
	color: #a4a4a4;
	padding: 10px;
	font-size: 13px;
}

/** desktop breakpoint **/

@media (min-width: 768px) {
.content-container {
	width: 50%;
	margin: 0 auto;
	border-radius: 15px;
}
.bottom-bar {
	display: none;
}
.hide-on-desktop {
	display: none;
}
}
