/* NOTES
light green #82b74b
dark green #006600
}*/

* {
    box-sizing: border-box;
}

/* body with borders 
body {
    font-family: Arial;
    padding: 10px;
    background: #f1f1f1;
}*/

body {
    font-family: Arial;
   background-color: white;
	margin: 0;
}

 
h2 {
	margin-top: 0px;
	font-size: 30px;
	font-family: 'Open Sans', sans-serif;
	color: #006600;
}

h3 {
	margin-top: 0px;
	margin-bottom: 0px;
	font-size: 25px;
	font-family: 'Open Sans Condensed', sans-serif;
	color: #3e4444;
}

h4 {
	margin-top: 0px;
	font-size: 20px;
	font-family: Arial, Helvetica, sans-serif;
	color: #3e4444;
}

p {
	font-family: Arial, Helvetica, sans-serif;
	color: black;

}

/* unvisited link */
a:link {
  font-weight: bold;
  color: #006600;
  text-decoration: none;
}

/* visited link */
a:visited {
    color: #006600;
	text-decoration: none;
}

/* mouse over link */
a:hover {
    text-decoration: underline;
}

/* selected link */

.home a.home {
  color: #5ecd32;
  
}

.about a.about {
   color: #5ecd32;
  
}

.activities a.activities {
    color: #5ecd32;
  
}

.gallery a.gallery {
    color: #5ecd32;
}

.contact a.contact {
    color: #5ecd32;
}

/* Header/Blog Title */
.header {
    padding: 30px;
    text-align: center;
    background: white;
}

.header h1 {
    font-size: 40px;
	font-family: Verdana, Geneva, sans-serif;
	color: white;
}

/* Style the top navigation bar */
.topnav {
    overflow: hidden;
    background-color: #006600;
}

/* Style the topnav links */
.topnav a {
    float: left;
    display: block;
    color: #f2f2f2;
    text-align: center;
    padding: 14px 16px;
    text-decoration: none;
	font-family: Verdana, Geneva, sans-serif;
	font-weight: bold;
}

/* Change color on hover */
.topnav a:hover {
    background-color: white;
    color: black;
}

/* Create two unequal columns that floats next to each other */
/* Left column */
.leftcolumn {   
    float: left;
    width: 75%;
	background-color: white;
	padding-left: 20px;
}

/* Right column light green #82b74b*/
.rightcolumn {
    float: left;
    width: 25%;
    background-color: white;
    padding-left: 20px;
	padding-right: 20px;
}

/* Create two equal columns that floats next to each other */
.twocolumn {
    background-color: white;
	float: left;
    width: 50%;
    padding: 15px;
}

.row{
    background-color: white;
}


/* Clear floats after the columns */
.row:after {
    background-color: white;
	content: "";
    display: table;
    clear: both;
}

/* top card style */
.toparticle {
    background-color: linear-gradient(to bottom right, #b5e7a0 0%, #ffffff 50%);
	padding: 20px;
}

/* Add a card effect for articles */
.card {
    background: linear-gradient(to bottom right, #b5e7a0 0%, #ffffff 50%);
    padding: 20px;
    margin-top: 20px;
}

/* Add a colour card effect for articles */

.colourcard {
    background-color: #dff5d6;
    padding: 20px;
    margin-top: 20px;
}

.topcolourcard {
    background-color: #dff5d6;
    padding: 20px;
    margin-top: 80px;
}

.incard {
	background: white;
    padding: 5px;
    margin: 5px;
}

.caption {
	font-family: Tahoma, Geneva, sans-serif;
	color: black;
	text-align:center;
}

/* Footer */
.footer {
    padding: 5px;
    text-align: center;
    background: #006600;
    margin-top: 5px;
}
/* Footer text*/
.foottext {
	color: white;
}

div.gallery {
    background-color: white;
	margin: 5px;
    border: 1px solid #ccc;
    float: left;
    width: 180px;
}

div.gallery:hover {
    border: 1px solid #777;
}

div.gallery img {
    width: 100%;
    height: auto;
}

div.desc {
    padding: 15px;
    text-align: center;
}

/* Responsive layout - when the screen is less than 800px wide, make the two columns stack on top of each other instead of next to each other */
@media screen and (max-width: 800px) {
    .leftcolumn, .rightcolumn {   
        width: 100%;
        padding: 0;
    }
}

/* Responsive layout - when the screen is less than 400px wide, make the navigation links stack on top of each other instead of next to each other */
@media screen and (max-width: 400px) {
    .topnav a {
        float: none;
        width: 100%;
    }
}
