/* Import Montserrat Font */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;700&display=swap');

body, html {
    margin: 0;
    padding: 0;
    height: 100%;
    font-family: 'Montserrat', sans-serif;
}

body {
    background: url('../images/pmk-bg.jpg') no-repeat center center fixed;
    background-size: cover;
    display: flex;
    flex-direction: column;
}

.content {
    color: white;
    padding: 20px;
    border-radius: 10px;
	width:80%;
    max-width: 980px;
	margin: 10px auto 10px auto;
}

.intro-text h1 {
    font-size: 36px;
    margin-bottom: 20px;
    font-weight: 700;
}

.intro-text p {
    font-size: 18px;
    line-height: 1.6;
}

.motto-text {
	font-size: 24px;
    padding: 20px;
    font-weight: 700;
	font-style: italic;
	
}

.footnote {
	display:flex;
	flex-direction: column;
	margin-left:auto;
	margin-top:auto;
	padding:20px;
	/*background-color:red;*/
	color:#f1f1f1;
	width:60%;
    max-width: 800px;
	font-size:12px;
	
	background-color: rgba(0, 0, 0, 0.5); /* Semi-transparent background */
	
	border-radius:12px 0 0 0;
	
	
}