/* Reset some default margin and padding on all elements */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Times New Roman', Times, serif;
	font-weight: bolder;
}

/* Apply styles to the banner div */
.banner {
    width: 100%;
    height: 88vh;
    background-image: linear-gradient(rgba(0,0,0,0.22), rgba(0,0,0,0.22)), url('cathleenlake.JPG');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

/* Apply styles to the heading within the banner */
.banner h1 {
    margin: 100px;
    padding: 10px;
    font-size: 2em;
	align-items: top;
    color: aquamarine;
}

/* Apply styles to the security note */
.security-note {
    max-width: 1500px;
    margin: 10px;
    padding: 150px;
    text-align: left;
}

.security-note h2 {
	max-width: 2000px;
    margin: 30px;
    padding: 0px;
    text-align: center;
	background: aliceblue;
	color: purple;

}

.security-note p,
.security-note ul {
    color:#FFD700;
    line-height: 1.5;
}

.security-note ul {
    padding-left: 20px;
	
}

/* Apply styles to the navbar */
.navbar {
    background-color: #333;
    color: white;
    text-align: right;
    padding: 14.5px;
}

/* Style the navigation links */
.navbar ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
}

.navbar li {
    display: inline; /* Display the list items inline */
    margin-left: 15px;
}

.navbar a {
    display: block;
    color: white;
    text-align: center;
    padding: 10px 16px;
    text-decoration: none;
}

/* Change color on hover */
.navbar a:hover {
    background-color: #ddd;
    color: black;
}
