@charset "utf-8";
/* CSS Document */


.section-contaner {
	width: 800px;
	padding: 0;
	display: flex;
	justify-content: space-evenly;
}

.price_frame {
	height: 650px;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-content: flex-start;
}

h2 {
	font-size: 2rem;
	padding: 10px 0;
	text-shadow: -2px 2px 4px #000;
}

h3 {
	font-size: 3rem;
	text-shadow: -2px 2px 4px #000;
}

.basic_img {
	display: flex;
	justify-content: center;
}

.basic_img img {
	max-height: 120px;
	padding: 0 2px;
}

.lvl_details {
	width: 230px;
	border-top: 4px solid var(--site-color-golden-letters);
}

.lvl_details ul {
	font-family: Roboto;
	font-size: 1.3rem;
	text-align: center;
	color: #fff; 
	margin-top: 10px;
}

.lvl_details ul li {
	padding: 4px 0;
}

.notes {
	width: 800px;
	text-align: center;
	margin-top: -25px;
}

.notes p {
	font-family: Roboto;
	font-size: 1.3rem;
	color: var(--site-color-golden-letters)
}	

.footer-main {
	margin-top: 400px;
}

/* Mobile Layout: 600px and below. */
@media only screen and (max-width: 600px){

	.section-contaner {
		width: 450px;
		display: flex;
		flex-wrap: wrap;
	}
	
	h2 {
		width: 100%;
		text-align: center;
	}
	
	.price_frame {
		margin-top: -50px;
		flex-direction: column;
		align-items: center;
	}
	
	.basic_img {
		width: 100%;
	}
	
	.prices {
		width: 100%;
		text-align: center;
	}
	
	.notes {
		width: 100%;
		margin-top: -30px;
		padding: 0 30px;
	}

	.footer-main {
		margin-top: 1400px;
	}
	
}

/* Media Query for Tablets */
@media only screen and (min-width : 601px) and (max-width : 768px) {
	
	.section-contaner {
		width: 600px;
		padding: 0;
		display: flex;
		justify-content: space-evenly;
	}
	
	.price_frame {
		height: 520px;
	}

	h2 {
		font-size: 1.3rem;
	}

	h3 {
		width: 100px;
		font-size: 2rem;
	}

	.basic_img img {
		max-height: 80px;
	}

	.lvl_details {
		width: 120px;
	}

	.lvl_details ul {
		font-family: Roboto;
		font-size: 1rem;
	}
	
	.notes {
		width: 600px;
		text-align: center;
		margin-top: 0;
	}
	
	.footer-main {
		margin-top: 300px;
	}
		
}