.noto-sans-<uniquifier> {
	font-family: "Noto Sans", serif;
	font-optical-sizing: auto;
	font-weight: <weight>;
	font-style: normal;
	font-variation-settings: "wdth" 100;
}

*{
	user-select: none;
}

body{
	margin: 0;
	padding: 5vh;
}

hr{
    height: 1px;
    width: calc(100vw - 10vh);
    color: black;
    background: black;
    font-size: 5px;
    border: 0;
    position: fixed;
    top: 27vh;
}

h1{
	font-family: "Noto Sans", serif;
    font-size: 7vh;
    font-weight: 500;
    line-height: 8vh;
}

h2{
	font-family: "Noto Sans", serif;
    font-size: 4vw;
    font-weight: 500;
    line-height: 3vw;
}

h3{
    font-family: "Noto Sans", serif;
    font-size: 2vw;
    font-weight: 400;
    line-height: 0;
}

h4{
    font-family: "Noto Sans", serif;
    font-size: 1.1vw;
    font-weight: 600;
}

#navbar{
	position: fixed;
	display: flex;
    justify-content: flex-end;
	top: 5vh;
	right: 5vh;
	width: 30vw;
	height: 10vh;
}

.nav-btn{
	display: inline-block;
	margin-left: 4vh;
	font-family: 'Menlo', sans-serif;
    font-size: 1.1vw;
    font-weight: 400;
}

.nav-btn:hover{
	cursor: pointer;
}

#overlay{
	pointer-events: all;
	cursor: pointer;
	position: fixed;
	top: 0;
	left: 0;
	width: 100vw;
	height: 100vh;
	background-color: black;
	opacity: 0.8;
	transition: opacity .2s;
}

#overlay.hide{
	pointer-events: none;
	opacity: 0;
	transition: opacity .2s;
}

#header{
	background-color: white;
	position: fixed;
	top: 0;
	width: 100vw;
	height: 30vh;
}

#collection{
	position: fixed;
	overflow-y: scroll;
	top: 30vh;
	width: calc(100vw - 10vh);
	height: 65vh;
	display: grid;
  	grid-template-columns: repeat(6, 1fr);
  	grid-auto-rows: max-content;
    column-gap: 1.5vw;
}

.card{
	width: 100%;
    margin-bottom: 1.5vw;
}

.card:hover{
	cursor: pointer;
}

.image{
	width: 100%;
}

#page{
	background-color: white;
	position: absolute;
	overflow-y: scroll;
	top: 12.5vh;
	left: 12.5vh;
	width: calc(100vw - 25vh);
	margin-bottom: 12.5vh;

	transition: top .5s;
}

#page.hide{
	position: fixed;
	top: 112.5vh;
	transition: top .2s;
}

#pageHeader{
	background-color: white;
	padding: .01vw 0vw 4vw 3vw;
	width: calc(100% - 3vw);
	height: 6vw;
}

#pageContent{
	background-color: white;
	padding: 3vw 3vw 3vw 3vw;
	column-count: 3;
    column-gap: 3vw;

    height: 100%;

    font-family: 'Menlo', sans-serif;
    font-size: .8vw;
    font-weight: 100;
}

#pageContent b{
	font-family: 'Menlo', sans-serif;
    font-size: .6vw;
    font-weight: 800;
}