body, p, h1, h2, h3, div{
	padding: 0;
	margin: 0;
	font-family: 'Ubuntu', sans-serif;
}
body{
	background: #f3f3f3;
}



nav {
	width: 100%;
	background:#f3f3f3;
}
nav> div{
	display: grid;
	grid-template-columns: 2fr 2fr 1fr;
	max-width: 960px;
	padding: 5px;
	margin: auto;
}
nav> div> div {
	display: grid;
	grid-template-columns: 1fr 1fr;
	align-items: center;
	grid-column-gap: 30px;
} 
nav a{
	color: #1848a0;
	text-decoration: none;
	font-size: 18px;
	letter-spacing: 1px;
	font-weight: bold;
	transition: all 0.3s;
}
nav a:first-child{
	justify-self: end;
}
nav a:hover {
	color: deepskyblue;
	transition: all 0.2s;
}

#copyright{
	background: black;
}
#copyright >div{
	max-width: 960px;
	margin: auto;
	color: white;
	padding: 15px;
	text-align: center;
}

nav>div>div:nth-child(3){
	background: #49abee;
	border-radius: 10px;
	grid-column-gap: 0;
}
nav>div>div:nth-child(3)>a {
	color: white;
	justify-self: center;
	padding: 3px;
}
nav>div>div:nth-child(3)>a:hover {
	color: #1848a0;
}
nav>div>img{
	width: 200px;
}
@media all and (max-width: 600px){
	.slider{
		height: 650px !important;
	}
	nav>div>img{
		width: 150px;
	}
	nav>div>div>a{
		font-size: 12px;
	}
}