@font-face {
	font-family: rail-alphabet;
	src: url(fonts/Rail-Alphabet.ttf);
}
@font-face {
	font-family: webly-sleek;
	src: url(fonts/webly-sleek-ui-semi.ttf);
}

body{
	display: flex;
  	min-height: 80vh;
  	flex-direction: column;
  	justify-content: space-between;

	background-color: #d7f0f5;
	background-repeat: no-repeat;
	background-attachment: fixed;
	background-size: 100% 100%;
	margin: 150px 0px 0px 0px;
}

#navbar{
	overflow: hidden;
	background-color: white;
	padding-top: 20px;
	box-shadow: 0 15px 15px 0px rgba(0,0,0,.2);
	transition: 0.5s;
	position: fixed;
	width: 100%;
	top: 0%;
}
#navbar nav{
	float: right;
	margin: 15px;
}

#pointer-frame, #pointer-frame-footer{
	width: 100%;
	height: 34px;
	padding: 0%;
	background-color: rgb(166, 172, 172);
}
#pointer-frame-footer{
	box-shadow: 0 -15px 15px 0px rgba(0,0,0,.2);
}
#pointer{
	margin-left: 25px;
}

a.navbar-link{
	position: relative;
	margin: 5px 10px;
	font-size: 35px;
	font-family: rail-alphabet;
	color: rgb(40, 60, 110);
}

#logo{
	margin: 5px 15px 5px 50px;
	height: 54px;
}

footer{
	background-color: white;
	height: 34px;
}
footer p{
    background-color: white;
	font-family: rail-alphabet;
	text-align: left;
	margin: 0px;
	padding: 10px;
}

a, p{
	font-family: webly-sleek;
	font-size: 24px;
}
p{
	color: black;
	margin: 15px 50px;
}
a{
	color: rgb(40, 60, 110);
	text-decoration: none;
}
a:hover{
	text-decoration: underline;
}

button{
    font-family: rail-alphabet;
	font-size: 40px;
	font-weight: normal;
	color: rgb(40, 60, 110);
	border: 3px solid rgb(40, 60, 110);
	border-radius: 10px;
	transition-duration: 0.25s;
	background-color: white;
	padding: 15px 50px;
}
button:hover{
    color: white;
	background-color: rgb(40, 60, 110);
}

h1{
	font-family: rail-alphabet;
	font-size: 40px;
	font-weight: normal;
	color: rgb(40, 60, 110);
	margin: 15px 50px;
}

.content{
	display: block;
	margin: 0 auto;
	width: 1280px;
	height: 720px;
}

@media screen and (max-width: 850px){
	.content{
		width: 75%;
	}
}