.container {
	margin: 20px auto;
	width: 80%;
	background-color: #f0f0f0;
	border-radius: 5px;
	overflow: hidden;
}



.container:hover {
	transform: scale(1.0);
}

.header {
	background-color: #4CAF50;
	color: black;
	padding: 15px 20px;
	font-size: 24px;
	font-weight: bold;
	text-align: center;
}


 .navbar-expand-sm {
	padding: 10px 20px;
	font-size: 16px; 
	color: black; /* Set the text color to black */
}



.btn-primary {
	border-radius: 20px;
	box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
	transition: all 0.3s ease;
}

.btn-primary:hover {
	transform: scale(1.05);
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}


.form-group {
	text-align: left;
}

.form-group .btn {
	margin: 0 auto; /* Centers the buttons horizontally */
	display: inline-block; /* Allows the buttons to be centered */
}

.button-container {
    text-align: center; /* Centers the content horizontally */
}

.button-container .btn {
	margin: 10px; /* Adds some space around each button */
	display: inline-block; /* Allows the buttons to be centered */
}


.content-wrapper {
	background-color: #ffffff;
	padding: 20px;
	border-radius: 10px;
	margin-bottom: 20px;
}

h1, h2 {
	font-family: 'Arial', sans-serif;
}

p {
	font-size: 18px;
	line-height: 1.6;
}

