html {
	font-family: "myriad-pro", "Helvetica Neue", Helvetica, Arial, sans-serif;
}

body {
	box-sizing: border-box;
	margin: 0;
	overflow-x: hidden;
	overflow-y: scroll;
	width: 100%;
}

/* Nav bar */

nav {
	position: absolute;
	top: 0;
	right: 0;
	left: 0;
	padding: 5px;
	height: 40px;
	border-bottom: 1px solid #121214;
}

#nav-links {
	list-style: none;
}

#nav-links .sot {
	list-style: none;
}

#nav-links li {
	position: relative;
	float: left;
	padding-right: 15px;
	color: #999999;
	font-weight: 300;
}

#nav-links:hover {
	cursor: pointer;
}

#nav-links a {
	text-decoration: none;
	color: #999999;
	font-weight: 300;
}

.socials {
	padding-bottom: 13px;
}

.nav-dropdown-menu {
	display: none;
	position: absolute;
	min-width: 50px;
	list-style: none;
	background-color: #222;
    color: #fff;
    padding-bottom: 5px;
    padding-top: 5px;
	margin-top: 9px;
	z-index: 10000;
}

.socials:hover .nav-dropdown-menu {
	display: block;
}

.nav-dropdown-menu:hover {
	display: block;
}

#nav-links .nav-dropdown-menu li {
	margin-left: -35px;
}

#nav-links .nav-dropdown-menu a:hover {
	color: white;
	font-weight: 300;
}
/* Begin the mess that's the main header */
/* main {
} 

idfk what to put here LOL */

.home-container {
	margin-top: 51px;
	margin-left: auto;
	margin-right: auto;
	height: 450px;
	background: url(manners.jpg) repeat center;
	width: 100%;
	border-bottom: 1px solid #121214;
}

.home-container-content {
	height: 100%;
	position: relative;
}

#welcome-box {
	width: 400px;
	position: absolute;
	margin-left: 125px;
	margin-top: 175px;
}

#welcome-box-center {
	width: 100%;
	position: absolute;
	margin-top: 70px;
	display: flex;
	justify-content: center;
}

#welcome-message {
	color: white;
	font-size: 42px;
	font-weight: 300;
}

#subheader-message {
	color: #999999;
	font-size: 24px;
	font-weight: 300;
}

#subheader-message-center {
	color: black;
	font-size: 24px;
	font-weight: 300;
	margin-top: 65px;
	margin-left: -160px;
}

#profile-picture-box {
	width: 300px;
	position: absolute;
	right: 125px;
	margin-top: 85px;
}

#profile-picture {
	width: 255px;
	border: 10px solid white;
}

/* The "about me" section */

.aboutme-container {
	padding-top: 20px;
	background-color: #f0f0ed;
	height: 450px;
}

.aboutme-container-content {
	margin-left: 44px;
	margin-right: 44px;
}

.aboutme-header {
	font-size: 42px;
	line-height: 44px;
	margin-bottom: 40px;
	font-weight: 300;
	display: flex;
	justify-content: center;
}

.aboutme-box-left {
	position: absolute;
	display: flex;
	justify-content: center;
	width: 500px;
}

.aboutme-box-right {
	position: relative;
	display: flex;
	justify-content: center;
	width: 500px;
	float: right;
}

.aboutme-box-interests {
	background-color: #f0f0ed;
	border: 2px solid #121214;
	box-shadow: 1px 1px 10px #121214;
	width: 350px;
}

#interest-header {
	font-size: 22px;
	font-weight: 300;
	display: flex;
	justify-content: center;
}

#interest-separator {
	border-bottom: 1px solid;
	width: 80%;
	display: block;
	margin-left: 34px;
}

#interest-list {
	margin-top: -15px;
	list-style: none;
}

#interest-list li {
	font-weight: 300;
}

.aboutme-text {
	color: #999999;
	font-size: 20px;
	line-height: 30px;
	font-weight: 300;
}

/* Footy footer */

footer {
	height: 40px;
	background-color: #121214;
}

#copyright-text {
	float: right;
	color: white;
	font-size: 16px;
	font-weight: 300;
	margin-right: 10px;
	line-height: 40px;
}

/* 404 page styles */

#error-box {
	position: absolute;
	margin-top: 150px;
	left: 35%;
}

#error-message {
	font-size: 55px;
	font-weight: 300;
	color: white;
}

#suberror-message {
	color: #999999;
	font-size: 24px;
	font-weight: 300;
}

#suberror-message a {
	color: #999999;
	text-decoration: none;
	font-weight: 500;
}

#error-footer {
	width: 100%;
	position: fixed;
	bottom: 0;
}

/* I hate mobile I hate mobile i ahte mobile i hte vobomieemaiamimaiamaiam */
@media (max-width: 1080px) and (min-width: 801px) {
	#welcome-box {
		margin-left: 60px;
	}
	
	#profile-picture-box {
		right: 60px;
	}
	
	.aboutme-box-left {
		position: absolute;
		display: flex;
		justify-content: center;
		width: 400px;
	}

	.aboutme-box-right {
		position: relative;
		display: flex;
		justify-content: center;
		width: 350px;
		float: right;
	}
	
	#error-box {
		right: 30%;
	}
}

@media (max-width: 800px) and (min-width: 601px) {
	#welcome-box {
		margin-top: 20px;
		margin-left: 40px;
	}
	
	#profile-picture-box {
		width: 200px;
		right: 40px;
	}
	
	#profile-picture {
		width: 175px;
	}
	
	.aboutme-container {
		height: 600px;
	}
	
	.aboutme-box-left {
		width: 90%;
	}

	.aboutme-box-right {
		margin-top: 150px;
		position: absolute;
		width: 90%;
		float: none;
	}
	
	.aboutme-box-interests {
		width: 70%;
	}
	
	#error-box {
		left: 0;
		margin-top: 20px;
		margin-left: 20px;
	}
}

@media (max-width: 600px) and (min-width: 1px) {
	#nav-links li {
		padding-right: 35px;
		margin-left: -25px;	
	}
	
	#nav-links .sot {
		visibility: hidden;
	}
	
	.aboutme-container-content {
	  margin-left: 2px;
	  margin-right: 2px;
  	}
	
	.home-container {
		height: 300px;
	}
	
	#welcome-box {
		width: 300px;
		margin-left: 20px;
		margin-top: 20px;
	}

	#welcome-box-center {
		margin-top: 100px;
	}
	
	#welcome-message {
		color: white;
		font-size: 35px;
	}
	
	#subheader-message {
		color: #999999;
		font-size: 16px;
	}

	#subheader-message-center {
		color: #999999;
		font-size: 16px;
		margin-top: 55px;
  		margin-left: -125px;
	}
	
	#profile-picture-box {
		right: 0;
	}
	
	#profile-picture {
		width: 175px;
	}
	
	.aboutme-header {
		font-size: 30px;
		line-height: 30px;
		margin-bottom: 20px;
	}
	
	.aboutme-container {
		height: 600px;
	}
	
	.aboutme-box-left {
		width: 99%;
	}

	.aboutme-box-right {
		margin-top: 250px;
		position: absolute;
		width: 99%;
		float: none;
	}
	
	.aboutme-box-interests {
		width: 100%;
	}
	
	#error-box {
		left: 0;
		margin-top: 20px;
		margin-left: 20px;
	}

	.home-container-oc-page {
		height: 320px;
	}

	#subheader-message-center {
		color: black;
	}
}

/* I promised dark mode and I'll deliver */

@media (prefers-color-scheme: dark) {
	body {
		background-color: #222;
	}
	
	.aboutme-container {
		background-color: #222;
	}
	
	.aboutme-header {
		color: white;
	}

	.aboutme-box-interests {
		border: 2px solid #f0f0ed;
		background-color: #222;
	}
	
	#interest-header {
		color: white;
	}
	
	#interest-separator {
		border: 1px solid white;
	}
	
	#interest-list {
		color: white;
	}

}