html {
	font-size: 16px;
}

*, *::after, *::before {
	box-sizing: border-box;
	margin: 0;
	font-family: Perpetua;
}

body {
	display: flex;
	align-items: center;
	justify-content: center;
	height: 100vh;
	width: 100%;
	background-color: ghostwhite;
}

.main-container {
	background-color: lightseagreen;
	width: 80%;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
}

.container {
	border: none;
	width: 500px;
	border-radius: 5px;
	overflow: hidden;
	box-shadow: 3px 3px 10px rgba(0, 0, 0, 0.5);
	background-color: lightcyan;
	display: flex;
	flex-direction: column;
}

.top-container {
	min-height: 45%;
	width: 100%;
	border: none;
	padding: 25px;
} 
.top-container h2 {
	margin-bottom: 20px;
	color: darkcyan;
}

.top-container h4 {
	margin-bottom: 15px;
	color: darkslategray;
}

.top-container p {
	margin-bottom: 5px;
	color: ;
	opacity: 0.7;
}

.bottom-container {
	display: flex;
	height: 55%;
	width: 100%;
	border: none;
}

.bottom-container h4 {
	margin-bottom: 15px;
}

.bottom-left-container, .bottom-right-container {
	flex-basis: 50%;
	padding: 25px;
}

.bottom-left-container {
	background-color: darkslategray;
	color: white;
}

.bottom-left-container h4 {
	color: white;
	opacity: 1;
}

.bottom-left-container p {
	opacity: 0.9;
}

.bottom-right-container {
	background-color: darkcyan;
	color: white;	
}

.bottom-right-container h4 {
	color: ;
}



#amount, #payment-frequency {
	display: inline-block;
}

#amount {
	font-weight: 700;
	font-size: 1.4rem;
}

#payment-frequency {
	position: relative;
	top: -3px;
	margin-left: 5px;
	font-size: 0.9rem;
	opacity: 0.9;
}

.price-container {
	margin-bottom: 5px;
	color: white;
}


button {
	margin: 32px 0px 0px 0px;
	width: 100%;
	padding: 10px;
	border: none;
	font-size: 1rem;
	background-color: lightcyan;

}

button:hover {
	cursor: pointer;
	opacity: 0.9;
	transform: scale(0.97);
	background-color: white;
}

.bottom-right-container ul
{
	list-style: none;
	margin: 0px;
	padding: 0;
	font-size: 0.9rem;
	opacity: 0.8;
}


@media (max-width: 925px) {
	.main-container {
		width: 90%;
	}	
}



@media (max-width: 600px) {
	body, .main-container {
		background-color: darkseagreen;

	}
	.bottom-container {
		flex-direction: column;
	}

}
