@font-face {
	font-family: m6x11plus;
	src: url(assets/m6x11plus.ttf);
}

* {
	scrollbar-color: #00aa87b3 #161617;
	scrollbar-width: thin;
}

body {
	margin: 0;
	padding: 0;
	font-family: m6x11plus, monospace, system-ui, sans-serif;
	color: white;
	font-size: 18px;
	background: #141416;
}

#content {
	width: 100%;
	max-width: 100%;
	overflow-x: hidden;
	margin: 0 auto;
	background-image: url(assets/website-lighthouse.jpg);
	background-size: cover;
	display: flex;
	flex-direction:column;
	align-items: center;
	position: relative;
	padding-top:2em;
}

#video {
	aspect-ratio: 16 / 9;
	width: 90%;
	max-width: 1920px;
	height: auto;
}

.rounded {
	border-radius: 10px;
}

h1 {
	font-size: 2em;
}

a {
	color: #ff8f00;
	text-decoration: none;
}

a:hover {
	text-decoration: underline;
}

p, li, h1 {
	text-shadow: -1px 1px 2px black;
	margin-top:0;
}

ul {
	list-style-type: none;
	padding: 0;
}

.minortext {
	font-size:18px;
	color: #888;
}

#buttons {
	display:flex;
	width:90%;
	flex-direction: row;
	align-items: center;
	justify-content: center;
}



.drive-btn {
	outline-color: #14a326;
}
.drive-btn:hover {
	box-shadow: 0 0 10px #14a326;
}

.github-btn {
	outline-color: #aaa;
}
.github-btn:hover {
	box-shadow: 0 0 10px #aaa;
}

.btn {
	display:flex;
	flex-direction: row;
	align-items: center;
	justify-content: space-evenly;
	width: 200px;
	background: black;
	border-radius: 10px;
	margin: 5px;
	padding: 5px;
	font-size:36px;
	color:white;
	text-decoration: none;
	outline-style: solid;
	outline-width: 1px;
	transition-property: box-shadow;
	transition-duration: 0.2s;
	box-shadow: 0 0 0px;
}

#logo {
	max-width:100%;
	height:auto;
}

#seal {
	border: none;
	overflow: hidden;
	position: fixed;
	bottom: 0;
	right: 0;
	width: 800px;
	height: 800px;
	transform: scale(0.25);
	transform-origin: 100% 100%;
}

@media (min-width: 1440px) {
	#content {
		width: 85%;
	}
}
@media (min-width: 960px) {
	body {
		font-size:36px;
	}
	#seal {
	transform: scale(0.333);
	}
}
@media (max-width: 480px) {
	#buttons {
		flex-direction: column;
	}
}
