
 <!--
	Author: James Boyt
	Date: 04/13/2026
	Filename: homepage.css
	-->     
	   /* Make the body take full height */


body {
    margin: 0;
    font-family: Times New Roman, sans-serif;
	font-size: 1em;
    color: black;
    position: relative;
    min-height: 100vh;
    overflow: hidden;
}

/* Add blurred background using a pseudo-element */
body::before {
    content: "";
    position: fixed; 
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('boat2.png');
    background-size: cover;
    background-position: center;
    filter: blur(8px); 
    z-index: -1;       
}

/* Table cells */
td {
    vertical-align: top;
    padding: 10px;
}

/* Images inside table */
img {
    display: block;
    margin-bottom: 10px;
    max-width: 100%;
    height: auto;
}

/* Headers */
h1, h2 {
    text-align: center;
}

/* Navigation */
nav a {
    color: Black;
    text-decoration: none;
    margin: 0 10px;
}

nav a:hover {
    text-decoration: underline;
}

/* Footer */
footer {
    text-align: center;
    margin: 20px 0;
}

aside {
    border: 2px solid black;
    border-radius: 12px; /* rounded corners */
    box-shadow: 4px 4px 10px rgba(0, 0, 0, 0.3); /* shadow */
    padding: 10px;
    background-color: white; /* IMPORTANT so you can actually see the box */
}


