/*@keyframes myAnimation {
  from {background-image: linear-gradient(rgba(255, 255, 255, 0.6), rgba(255, 255, 255, 0.6)), url("../images/Asset_2.png");}
  to {background-image: linear-gradient(rgba(255, 255, 255, 0), rgba(255, 255, 255, 0)), url("../images/Asset_2.png");}
}*/

.bodyMain { 
	font-family: Arial, sans-serif; 
	/*background: #f4f4f9; */
	background-image: linear-gradient(rgba(255, 255, 255, 0.6), rgba(255, 255, 255, 0.6)), url("../images/Asset_6.png");
	background-size: cover;
	text-align: center;
	margin: 0;
	min-height: 120vh;
	display: flex;
	flex-direction: column;
	/*animation-name: myAnimation;
  	animation-duration: 4s;*/
}

.bodyPKN { 
	font-family: Arial, sans-serif; 
	/*background: #f4f4f9; */
	background-image: linear-gradient(rgba(255, 255, 255, 0.6), rgba(255, 255, 255, 0.6)), url("../images/Asset_6.png");
	background-size: cover;
	text-align: center;
	margin: 0;
	flex-direction: column;
	/*animation-name: myAnimation;
  	animation-duration: 4s;*/
}

h1 {
	/*background: #f15a22;*/
	padding: 20px;
	/*border-radius: 20px;*/
	color: #ffffff;
}

.font-besar {
	font-size = 2rem;
}

.align-kiri {
	text-align: left;
}

.quiz-container { 
	max-width: 600px; 
	margin: 0 auto; 
	background: white; 
	padding: 20px; 
	border-radius: 8px; 
	box-shadow: 0 4px 8px rgba(0,0,0,0,10);
}

.options-btn { 
	display: block; 
	width: 100%; 
	margin: 10px 0; 
	padding: 12px; 
	background: #e7e7e7; 
	border: none; 
	border-radius: 5px; 
	cursor: pointer; 
	font-size: 16px;
}

.options-btn:hover { 
	background: #dcdcdc; 
}

.hidden {
	display: none;
}

#next-btn {
	margin-top: 15px; 
	padding: 10px 20px; 
	background: #28a745; 
	color: white; 
	border: none; 
	border-radius: 5px; 
	cursor: pointer;
}

#restart-btn {
	margin-top: 15px; 
	padding: 10px 20px; 
	background: #28a745; 
	color: white; 
	border: none; 
	border-radius: 5px; 
	cursor: pointer;
}

.hero {
	background: #f15a22;
	color: #fff;
	padding: 5px 5px;
	text-align: center;
}

.hero h1{
	margin-bottom: 1;
}

.hero p{
}

main {
	/*flex: 1; */
	display: grid;
	place-items: center;
	height: 100vh;
}

footer {
	background-color: #f15a22;
	color: #fff;
	position: fixed;
	left: 0;
	bottom: 0;
	width: 100%;
	height: 60px
}

table {
  font-family: Arial, Helvetica, sans-serif;
  border-collapse: collapse;
  width: 100%;
}

td, th {
  border: 1px solid #ddd;
  padding: 8px;
}

tr:nth-child(even){background-color: #f2f2f2;}

tr:hover {background-color: #ddd;}

th {
  padding-top: 12px;
  padding-bottom: 12px;
  text-align: left;
  background-color: #04AA6D;
  color: white;
}