@charset "utf-8";
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600;700&display=swap');
.page_text {
	font-family: 'Poppins', sans-serif;
	font-size: 18px;
	font-style: normal;
	line-height: normal;
}
.page_text_strong {
	font-family: 'Poppins', sans-serif;
	font-size: 18px;
	font-style: normal;
	line-height: normal;
	font-weight: bold;
}
.page_text_small_caps {
	font-family: 'Poppins', sans-serif;
	font-size: 18px;
	font-style: normal;
	line-height: normal;
	color: #000;
}
.page_header_small_caps {
	font-family: 'Poppins', sans-serif;
	font-size: 20px;
	font-style: normal;
	line-height: normal;
	font-weight: bold;
	text-align: center
	color: #000;
}

.white_hyperlink {
    font-family: 'Poppins', sans-serif;
	font-size: 18px;
	font-style: normal;
	line-height: normal;
	font-weight: bold;
	color: #FFF;
}
.large-button {
            font-size: 18px; /* Increase font size */
            padding: 15px 30px; /* Increase padding */
            width: 200px; /* Set a specific width */
            height: 60px; /* Set a specific height */
            border-radius: 10px; /* Optional: rounded corners */
            background-color: #4CAF50; /* Green background */
            color: white; /* Text color */
            border: none; /* Remove default border */
            cursor: pointer; /* Change cursor on hover */
            text-align: center; /* Center text */
        }
.large-button:hover {
            background-color: #45a049; /* Darker green on hover */
        }