body {
	background-color: rgb(22,22,33);
	}

@font-face {
	font-family: "Niagara Solid";
	src: url(NIAGSOL.TTF);
}

* {
	font-family: "Niagara Solid", serif;
	color: rgba(72, 161, 148);
	box-sizing: border-box;
}

a:link {
	text-decoration: none;	
}

a:hover {
	color: rgba(118, 255, 233);
}

h1 {
	text-align: center;
	font-size: 150px;
}

h2 {
	text-align: center;
	font-size: 48px;
	font-weight: 600;
}

h3 {
	font-size: 42px;
	text-align: center;	
	font-weight: 100;
}

p {
	font-size: 38px;
}

img {
	display: block;
	max-width: 70%;
	min-width: 75px;
	margin: 10px;
}

.wrapper {
	overflow: hidden;
	height: 100vh;
	display: grid;
	grid-template-columns: 1fr 9fr;
	margin-left: 22%;
}

.gallery {
	overflow: scroll;
	scroll-snap-type: x mandatory;
	scroll-behavior: smooth;
}

.gallery__img {
	scroll-snap-align: none center;
	max-height: 100%;
	object-fit: cover;
}

.lil-nav {
	min-width: 120px;
	max-width: 300px;
	overflow-y: scroll;
	overflow-x: hidden;
}


.lil-nav__img {
	object-fit: cover;
	transition: 0.3s ease all;
}

.lil-nav__img:hover {
	transform: scale(1.05);
}

@media only screen and (min-width: 600px) {
h2 {
	font-size: 48px;
	font-weight: 600;
}

h3 {
	font-size: 42px;
	font-weight: 100;
}

p {
	font-size: 38px;
}
}

@media only screen and (orientation: portrait) {
h2 {
	font-size: 80px;
	font-weight: 600;
}

h3 {
	font-size: 76px;
	font-weight: 100;
}

p {
	font-size: 70px;
}
img {
	max-width: 100%;
}
.wrapper {
	margin-left: 0%;
	margin-right: 10%;
}
.lil-nav__img {
	display: none;
}
}
