#container {
	margin: 0 auto;
	width: 900px;
	background: #fff;
	font-family: "Lucida Grande", "Bitstream Vera Sans", "Verdana";
	box-shadow: 0 10px 16px 0 rgba(0,0,0,0.2),0 6px 20px 0 rgba(0,0,0,0.19);
	min-height: calc(95vh);
}

* {
    box-sizing: border-box;
}

body {
    font-family: Arial;
    padding: 10px;
    background-image: linear-gradient(to bottom right, rgb(27, 85, 143), rgb(32, 174, 134));
    background-attachment: fixed;
    background-size: 100% 100%;
    background-repeat: no-repeat;
}

/* Header/Blog Title */
.header {
    padding: 30px;
    text-align: center;
    background: white;
}

.header h1 {
    font-size: 50px;
    position: sticky;
    top: 50;
}

/* Style the top navigation bar */
.topnav  {
    overflow: hidden;
    background-color: #333;
    position: -webkit-sticky;
    position: sticky;
    top: 0;
    z-index: 1;
}

/* Style the topnav links */
.topnav a {
    float: left;
    display: block;
    color: #f2f2f2;
    text-align: center;
    padding: 14px 16px;
    text-decoration: none;
}

/* Change color on hover */
.topnav a:hover {
    background-color: #ddd;
    color: gray;
}
.topnav a.active {
    background-color: #ddd;
    color: gray;
}
.topnav a.contact {
    float: right;
}
.topnav .icon {
    display: none;
}

/* Create two unequal columns that floats next to each other */
/* Left column */
.leftcolumn {   
    float: left;
    width: 75%;
}

/* Right column */
.rightcolumn {
    float: left;
    width: 25%;
    background-color: #f1f1f1;
    padding-left: 20px;
}

/* Home images */
.img1 {
    background-image: url("../images/profile.jpg");
    background-repeat: no-repeat;
    background-size: contain;
    width: 100%;
    padding: 20px;
}
.img2 {
    background-image: url("../images/profile.jpg");
    background-repeat: no-repeat;
    background-size: contain;
    width: 100%;
    padding: 20px;
}
.img3 {
    background-image: url("../images/profile.jpg");
    background-repeat: no-repeat;
    background-size: contain;
    width: 100%;
    padding: 20px;
}

.six-flags{
    background-image: url("../images/sixFlags.jpg");
    background-repeat: no-repeat;
    background-size: contain;
}
.permit{
    background-image: url("../images/permitTest.jpg");
    background-repeat: no-repeat;
    background-size: contain;
}

.profile-photo {
    background-image: url("../images/profile.jpg");
    background-repeat: no-repeat;
    background-size: contain;
}

/* Add a card effect for articles */
.card {
    background-color: white;
    padding: 20px;
    margin-top: 20px;
}

.w3-half img {

    margin-bottom: -6px;
    margin-top: 16px;
    opacity: 0.8;
    cursor:pointer;
}
.w3-half img:hover {
    opacity: 1
}

/* Clear floats after the columns */
.row:after {
    content: "";
    display: table;
    clear: both;
}

.content {
    min-height: calc(100vh - 40vh);
}
/* Footer */
.footer {
    padding: 20px;
    text-align: center;
    background: #ddd;
    margin-top: 20px;
}

/* 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;
    }
    #container {
        width: 100%;
    }
}

/* 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: 600px) {
    body {
        padding: 0;
    }

    #container {
        width: 100%;
    }
    .topnav a.contact {
        float: left;
    }
    .topnav a:not(.active) {display: none;}
    .topnav a.icon {
        float: right;
        display: block;
    }
    .topnav.responsive {position: relative;
    position: -webkit-sticky;
    position: sticky;
    top: 0;
    z-index: 1;
    }
    .topnav.responsive .icon {
        position: absolute;
        right: 0;
        top: 0;
    }
    .topnav.responsive a {
        float: none;
        display: block;
        text-align: left;
    }
}