@font-face {
	font-family: "NotoSans";
	src: url(static/font/noto_sans/NotoSans-VariableFont_wdth,wght.ttf);
}

body {
	font-family: "NotoSans";
	font-weight: 300;
	color: #ffffff;
	background-color: #0b0b0f;
	margin: 0px;
}

.hyperlink {
	color: #afffcf;
}

.top_bar {
	width: 100%;
	height: 8vh;
	position: fixed;
	top: 0px;
	background-color: transparent;
	color: black;
	padding: 0.5rem;
	display: flex;
	line-height: 100%;
	text-shadow: -2px 2px 4px #0b0b0f33,
				  2px 2px 4px #0b0b0f33,
				  2px -2px 0 #0b0b0f33,
				  -2px -2px 0 #0b0b0f33;
}

.name {
	line-height: normal;
	cursor: pointer;
	padding: 1rem;
	font-weight: 500;
	font-size: 2rem;
	color: #ffffff;
}

.logo {
	cursor: pointer;
	height: 100%;
}

.name_wrapper {
	height: 100%;
	flex-grow: 2;
	direction: column;
	display: flex;
	align-items: center;
}

.links {
	display: flex;
	align-items: center;
	line-height: normal;
	padding: 1rem;
	font-size: 2rem;
	color: #ffffff;
}

.link {
	margin: 0 0.75rem;
	cursor: pointer;
}

a {
	color: white;
	text-decoration: none;
}

.welcome {
	position: absolute;
	bottom: 2rem;
	right: 2rem;
	text-align: right;
	text-shadow: -2px 2px 4px #0b0b0f33,
				  2px 2px 4px #0b0b0f33,
				  2px -2px 0 #0b0b0f33,
				  -2px -2px 0 #0b0b0f33;
}

.welcome > h1 {
	font-size: 4rem;
	font-weight: 400;
}

.welcome > p {
	font-size: 1.5rem;
	font-weight: 400;
}

.banner {
	height: 100vh;
	width: 100vw;
	object-fit: cover;
	margin: auto;
}

.contact_outer {
	width: 60vw;
	margin: 4rem 20vw;
}

.contact {
	padding: 2%;
	font-size: 1.5rem;
}

.contact_labels {
	height: 2rem;
	display: block;
	width: 100%;
	text-align: center;
}

.contact_input {
	height: 2rem;
	width: 100%;
	line-height: 1.5rem;
	background-color: #ffffff08;
	color: #ffffff;
	border: 1px solid white;
	border-radius: 0.5rem;
}

textarea {
	font-family: "NotoSans";
	font-weight: 500;
}

.contact_name {
	display: inline-block;
	width: 46%;
}

.email {
	display: inline-block;
	width: 46%;
}

.message > .contact_input {
	height: 20vh;
}

.contact_outer > h3 {
	text-align: center;
	font-size: 2rem;
	margin: 0px;
}

#submit_button {
	height: 2rem;
	display: inline-block;
	font-size: 1.25rem;
	margin: 0px 35%;
	width: 30%;
	line-height: 1.5rem;
	font-weight: 700;
	background-color: #ffffff;
	color: #0b0b0f;
	border: 1px solid white;
	border-radius: 0.75rem;
}

.about {
	position: relative;
	top: 8vh;
	padding: 2rem 20%;
}

.footer {
	width: 100%;
	text-align: center;
}

.footer a {
	font-size: 1.75rem;
	background-color: transparent;
	border: 1px solid hsla(0, 0%, 100%, 60%);
	border-radius: 50%;
	display: inline-block;
	margin: 4rem;
	padding: 1rem;
}

.footer a:hover {
	color: #afffcf;
	border-color: #afffcf;
}

.footer_link {
	width: 2rem;
	height: 2rem;
}

