



/* golbal screen resolutions that respects zooming using the viewport by updating
these values to ones relying on px using javascript */
:root
{
	--screen-width: 100vw;
	--screen-height: 100vh;
}

body
{
	display: flex;
	flex-flow: column;
	align-items: center;

	min-height: 100vh;
}
*
{
	color: black;

	box-sizing: border-box;
	font-family: "Montserrat", sans-serif;
	text-align: center;
	word-wrap: break-word;

	padding: 0;
	border: 0;
	margin: 0;

	scrollbar-width: none;
	-webkit-tap-highlight-color: transparent;
	text-decoration: none;
	outline: none;
}
h2
{
	font-weight: bold;
	font-size: calc(24/955*var(--screen-height));

	line-height: calc(32/955*var(--screen-height));
	letter-spacing: calc(3/955*var(--screen-height));
}

#logoBar
{
	z-index: 12;

	display: flex;
	justify-content: center;
	align-items: center;

	position: sticky;
	top: 0;

	width: 100vw;
	height: calc(81/955*100vh);
	background-color: black;
}
#logoBar > img
{
	transform: translateX(calc(2.21/955*100vh));
	width: calc(228/955*100vh);
	height: calc(19.87/955*100vh);
}
.pushToEnd
{
	flex-grow: 1;

}
#footerBar
{
	z-index: 12;

	display: flex;
	justify-content: center;
	align-items: center;

	width: 100vw;
	height: calc(70/955*100vh);
	background-color: black;		

	> p
	{
		font-weight: 300;
		font-size: calc(8/955*var(--screen-height));

		width: calc(375/955*var(--screen-height));
		line-height: calc(12/955*var(--screen-height));
		letter-spacing: clac(3/955*var(--screen-height));

		color: white;
	}
}

::placeholder
{
	color: #706A6A;
	opacity: 1;
}
button, #logoBar
{
	cursor: pointer;
}



