
* {
    box-sizing: border-box;
}

p.cal {
	font-family:"Aerial",sans-serif;
}

h1.blur {
	padding:0px;
	text-shadow: 2px 2px 5px blue;
	color:yellow;	
}

h3.blured {
	padding:0px;
	text-shadow: 2px 2px 5px blue;
	color:deepblue;	
}


body {
  margin: 0;
}

/* Style the header */
.header {
    /*background-color: #f3f3f3;
    background-color: rgba(192,192,192,1.0); */
	background-color: rgba(0,0,128,0.3);
	padding: 10px;
    text-align: left;
}

.footer {
    position: fixed;
    left: 0;
    bottom: 0;
    width: 100%;
    background-color: black;
    color: white;
    text-align: left;
	padding:10px;
}

/* Style the top navigation bar */
.topnav {
    overflow: hidden;
    background-color: #333;
}

/* Style the topnav links */
.topnav a {
    float: left;
    display: block;
    color: #f2f2f2;
    text-align: center;
    padding: 14px 16px;
    text-decoration: none;
	font-family:"Aerial",sans-serif;
}

/* Change color on hover */
.topnav a:hover {
    background-color: #ddd;
	text-shadow: 2px 2px 5px red;
	text-style: oblique;
    color: black;
}

/* Create three unequal columns that floats next to each other */
.column {
    float: left;
    padding: 10px;
}

/* Left and right column */
.column.side {
    width: 25%;
}

/* Middle column */
.column.middle {
    width: 50%;
}

/* Clear floats after the columns */
.row:after {
    content: "";
    display: table;
    clear: both;
}

/* Responsive layout - makes the three columns stack on top of each other instead of next to each other */
@media (max-width: 600px) {
    .column.side, .column.middle {
        width: 100%;
    }
}
