body {
	background-color: white;
	font-family: Arial, sans-serif;
	margin: 0;
}

h1 {
	color: green;
	text-align: center;
}

a {
	text-decoration:none;
}

p {
	color: black;
	text-align: justify;
}

.container {
	width: 80%;
	margin: auto;
	padding: 10px;
}

.image {
	display: block;
	margin-left: auto;
	margin-right: auto;
	min-width: 8%;
	max-width: 300px;
}

.row {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
}

.column {
	flex: 0 0 100%;
	padding: 10px;
	max-width: 100%;
}

.column-image {
	width: 100%;
	height: auto;
}

footer {
    position:fixed;
    bottom:0;
	width: 100%;
	height: 50px;
	padding-top:15px;
	background-color: green;
	text-align: right;
	color: white;
}

footer a {
	color: white;
	text-decoration:none;
}

.column a {
	display: block;
	text-align: center;
}

.column h3 {
	margin-top: 10px;
}

.column p {
	margin-bottom: 10px;
}
#spopup{
    //background:#f3f3f3;
	background:green;
	border-radius:9px;
    -moz-border-radius:9px;
    -webkit-border-radius:9px;
    -moz-box-shadow:inset 0 0 3px #333;
    -webkit-box-shadow:inset 0 0 3px #333;
    box-shadow:inner 0 0 3px #333;
    padding:12px 14px 12px 14px;
    width:180px;
	height:45px;
    position:fixed;
    top:13px;
    right:10px;
    display:none;
    z-index:90;
}