@charset "UTF-8";
/* CSS Document */

body,html{
	margin-left: 1%;
	margin-right: 1%;
	margin-bottom: 1%;
	margin-top: 1%;
	font-family:Cambria;
	line-height:1.5;
	padding:0;
	background-color:#FFFFFF;
}

.banner {
    height:35%;
    width:60%;
}

.grid{
    display:grid;
    grid-template-columns: repeat(2,1fr);
    grid-gap:30px;
    align-items: start;
    justify-items:start;
}

.grid img{
    border:1px solid grey;
    box-shadow: 3px 3px 7px 7px grey;
    max-width:100%;
}

.grid img:nth child(2){
    grid-column: span 3;
    grid-row:span 2;
}

p{
	color:#112638;
	font-size:16px;
    text-align: center;
    width:100%;
}

h1{
    color:#112638;
    padding:0;
    display:flex;
    justify-content:space-around;
    border:none;   
	font-size: 22px;
    }

h3{
    padding:0;
    font-family:Cambria;
    color:#112638;
    font-size:20px;
	text-align: center;
}

h4{
    color:#112638;
    font-size:18px;
	text-align: center;
}

header{
    background:#2e3c6a;
    color:#112638;
    padding-top:0px;
    min-height:50px;
    position:absolute;
}

header a{
    color:#112638;
    text-decoration:none;
    text-transform:none;
    font-size:20px;
    height: 4em;
    position: relative;
}

.heading {
  width: 90%;
  padding: 50px;
  margin: 40px;
  text-align: center;
}

.responsive{
    height:50%;
    width:50%;
}

/*Nav*/

.navbar {
    font-size: 18px;
    background-image: linear-gradient(260deg, #2e3c6a 0%, #2e3c6a 100%);
    border: 1px solid grey;
    padding-bottom: 10px;
}

.main-nav {
    list-style-type: none;
    display: none;
}

.main-nav li {
    text-align: center;
    margin: 15px auto;
}

.navbar-toggle {
    position: absolute;
    top: 10px;
    right: 20px;
    cursor: default;
    color: white;
    font-size: 24px;
}

.active {
    display: block;
}

@media screen and (min-width: 768px) {
.navbar {
        display: flex;
        justify-content: space-between;
        padding-bottom: 0;
        height: 70px;
        align-items: center;
}

.main-nav {
        display: flex;
        margin-right: 30px;
        flex-direction: row;
        justify-content: flex-end;
}

.main-nav li {
    margin: 0;
}

.nav-links {
        margin-left: 40px;
}

.navbar-toggle {
        display: none;
}

.logo:hover,
.nav-links:hover {
        color: white;
    }
}



footer{
    position:fixed;
    left:0;
    bottom:0;
    width:100%;
    background-color:#2e3c6a;
    color:#FFFFFF;
    text-align:center;
    }