/* Main CSS File */
@font-face {
	font-family: jost;
	src: url(fonts/jost.ttf);
}

h1, h2, h5, p, nav, a, li, ul {
	font-family: jost;
}

img {
	border-radius: 8px;
}

html {
    overflow: -moz-hidden-unscrollable;
    height: 100%;
}

body::-webkit-scrollbar {
    display: none;
}

body {
    -ms-overflow-style: none;
    height: 100%;
	width: calc(100vw + 18px);
	overflow: auto;
}

@media only screen and (min-width: 992px) {
	body {
		background-image: url("assets/backgrounds/sea.jpg");
		background-size: cover;
		background-attachment: fixed;
	}	
}