/* Add a scroll bar, even when it's not in use - prevents resizing */
html {
    overflow-y: scroll;
}

/* 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) {
    .navbar a {
        float: none;
        width: 100%;
    }
}

/*general formatting*/
body { 
	font-family: garamond;
    color: rgb(50, 50, 50);
    background-color: rgb(220, 220, 220, 1.0);
	line-height: 1.3;
}
body p {
	font-size:20px;
}

body h {
	text-align:center;
}
body ul {
	text-align:left;
	font-size:20px;
}


/* format the text in the header*/
.header h1 {
    font-size: 250%;
    text-shadow: 1px 2px grey;
}

.header p {
	font-size: 150%;

}



.navbar ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
    overflow: hidden;
    background-color: rgb(0, 66, 0);
}

.navbar li {
    float: left;
}

.navbar li a, .dropbtn {
    display: inline-block;
    color: white;
    text-align: center;
    padding: 14px 16px;
    text-decoration: none;
}

li a:hover, .dropdown:hover .dropbtn {
    background-color: rgb(220, 220, 220);
	color: rgb(50, 50, 50);
}

li.dropdown {
    display: inline-block;
}

.navbar .dropdown-content {
    display: none;
    position: absolute;
    background-color: rgb(0, 66, 0);
    min-width: 160px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 1;
}

.navbar .dropdown-content a {
    color: white;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    text-align: left;
}

.navbar .dropdown-content a:hover {
	background-color: rgb(220, 220, 220);
	color: rgb(50, 50, 50);

}

.navbar .dropdown:hover .dropdown-content {
    display: block;

}


.bodytext {
	margin-left: 2%;
	margin-right: 2%;
	line-height: 1.3;
	font-s: 110%;
}
.bodytext h1 {
	color: rgb(0, 66, 0);
}
.bodytext p {
	margin-bottom: 30px;
}
.bodytext a {
    text-decoration: none;
	color:rgb(50, 50, 50);
	font-weight: bold;
}
.bodytext a:visited {
    text-decoration: none;
	color: rgb(0, 66, 0);
	font-weight: bold;
}

.header {
    padding: 40px; /* the size of the padding around the header */
    text-align: center; /* center the text */
    background-image: url(../images/LJM_NECRON_wide_nospeaker.jpg);
	background-position: 50% 80%;
    background-attachment: fixed;
	background-size: cover;
	-webkit-background-size: cover;
	-moz-background-size: cover;
	color: rgb(0, 66, 0)
}


/* Style all font awesome icons */
.fa {
    padding: 20px;
    font-size: 30px;
    width: 50px;
    text-align: center;
    text-decoration: none;
	color: rgb(0, 66, 0);
}

/* Add a hover effect if you want */
.fa:hover {
    opacity: 0.7;
}

/* Style all font awesome icons */
.ai {
    padding: 20px;
    font-size: 30px;
    width: 50px;
    text-align: center;
    text-decoration: none;
	color: rgb(0, 66, 0);
}

/* Add a hover effect if you want */
.ai:hover {
    opacity: 0.7;
}


/*Formatting the link icons on my splash page*/

<style>
.linkicons {
    text-align: center;
}
</style>



