:root {
	--black : rgb(0,0,0);
	--gold : rgb(251,225,77);
	--green : rgb(25,136,41);
	--grey : rgb(64,64,64);
	--red : rgb(227,28,25);
	--white : rgb(255,255,255);
}

* {
	background-repeat: no-repeat;
	box-sizing: border-box;
	position: relative;
	user-drag: none;
	user-select: none;
	-moz-user-select: none;
	-webkit-user-drag: none;
	-webkit-user-select: none;
}

html {
	height: 100%;
}

body {
	background-color: var(--black);
	color: var(--black);
	font-family: 'Nunito';
	font-size: 0.875rem;
	font-weight: 400;
	line-height: 1.3em;
	height: 100%;
	margin: 0px;
	padding: 0px;
}

img {
	max-width: 100%;
	user-select: none;
}

h1 {
	font-size: 1.6em;
	margin-top: 0.6em;
	margin-bottom: 0.6em;
	font-weight: 700;
}

h2 {
	display: block;
	font-size: 1.2em;
	margin-top: 0.8em;
	margin-bottom: 0.8em;
	font-weight: 700;
}

h3 {
	display: block;
	font-size: 0.875rem;
}

p {
	margin: 0px;
}

ol {
	margin-left: 0rem;
	padding-left: 2rem;
}

ul {
	margin-left: 0rem;
	padding-left: 2rem;
}


b, strong {
	font-weight: 700;
}

i, em {
	font-style: italic;
}

a {
	color: var(--red);
	text-decoration: none;
}

a:hover {
	text-decoration: underline;
}

.shot {
	border: 1px solid rgba(0,0,0,0.25);
	border-radius: 5px;
}

.zoom {
	cursor: pointer;
}

/* ··· Base ··· */

#base {
	display: flex;
	min-height: 100%;
}

#lane {
	background-color: var(--green);
	flex-shrink: 0;
	width: 20px;
}

#main {
	display: flex;
	flex-direction: column;
	flex-grow: 1;
}


/* ··· Hero ··· */

#hero {
	background-color: var(--white);
	height: 300px;
}

#hero_area {
	height: 300px;
	max-width: 920px;
}

#hero_lane {
	background-color: var(--red);
	position: absolute;
	top: 0px;
	left: 0px;
	right: 0px;
	height: 20px;
}


/* ··· Logo ··· */

#logo {
	display: flex;
	align-items: center;
}

#logo_left {
	flex-shrink: 0;
	width: 100px;
	height: 300px;
}

#logo_right {
	flex-shrink: 0;
	width: 160px;
	height: 300px;
}


/* ··· Sale ··· */

#sale {
	background-color: var(--red);
	border-radius: 0px 0px 10px 10px;
	color: var(--white);
	cursor: pointer;
	display: flex;
	flex-direction: column;
	justify-content: space-evenly;
	align-items: center;
	filter: drop-shadow(0px 3px 3px rgba(0,0,0,0.25));
	position: absolute;
	top: 0px;
	right: 2px;
	width: 150px;
	height: 130px;
}

#sale_edge {
	background-color: var(--white);
	position: absolute;
	top: 0px;
	right: 0px;
	width: 154px;
	height: 20px;
}

#sale_name {
	font-size: 1rem;
	font-weight: 700;
	line-height: 1.2em;
	text-align: center;
	text-transform: uppercase;
}

#sale_year {
	font-size: 3rem;
	font-weight: 900;
	line-height: 0.8em;
}

#sale_text {
	font-size: 0.75rem;
	line-height: 1em;
	text-align: center;
	text-transform: uppercase;
}


/* ··· Menu ··· */

.menu {
	background-color: var(--grey);
	display: flex;
	align-items: stretch;
	align-content: center;
	padding-left: 40px;
}

.menu.item {
	background-image: linear-gradient(rgb(85,85,85), rgb(150,150,150), rgb(85,85,85));
	border-left: 1px solid rgb(155,155,155);
	border-right: 1px solid rgb(80,80,80);
	color: var(--white);
	display: block;
	font-size: 0.75rem;
	font-weight: 700;
	text-align: center;
	text-decoration: none;
	text-transform: uppercase;
	margin-left: 0px;
	padding-left: 1.2rem;
	padding-right: 1.2rem;
	height: 30px;
}

.menu.live {
	background-color: var(--gold);
	border-left: 1px solid var(--gold);
	border-right: 1px solid var(--gold);
	color: var(--black);
	display: block;
	font-size: 0.75rem;
	font-weight: 700;
	text-align: center;
	text-decoration: none;
	text-transform: uppercase;
	margin-left: 0px;
	padding-left: 1.2rem;
	padding-right: 1.2rem;
	height: 30px;
}

@media (max-width: 760px) {
	.menu {
		flex-direction: column;
		padding-left: 0px;
	}
	.menu.item {
		text-align: left;
	}
	.menu.live {
		text-align: left;
	}
}


/* ··· Body ··· */

#body {
	background-color: var(--gold);
	flex-grow: 1;
	padding: 20px 40px;
}

.area {
	max-width: 880px;
}

.flex {
	display: flex;
	gap: 10px;
	max-width: 880px;
}

.flex.wrap {
	flex-wrap: wrap;
}


/* ··· Home ··· */

.home.side {
	flex-shrink: 0;
	width: 160px;
}

.home.boss {
	align-self: flex-start;
}

.home.line {
	border-bottom: 1px dotted var(--black);
	height: 5px;
	width: 100%;
}

.home.flip {
	text-align: right;
}

.home.card {
	max-width: 250px;
}

.home.name {
	text-align: center;
	margin: 0.5rem;
}


/* ··· Kinds ··· */

.kind.flex {
	justify-content: space-between;
	margin-top: 1em;
}

.kind.card {
	flex-grow: 1;
	max-width: 210px;
}

.kind.name {
	background-color: var(--black);
	border-radius: 10px;
	color: var(--white);
	font-weight: 700;
	letter-spacing: 0.5em;
	text-transform: uppercase;
	text-align: center;
	margin-bottom: 1em;
	padding: 1em;
}

.kind.type {
	text-align: center;
}


/* ··· Research ··· */

.tech.flex {
	justify-content: space-between;
}

.tech.side {
	flex-shrink: 0;
	width: 200px;
}

.tech.card {
	max-width: 210px;
}


/* ··· Papers ··· */

.docs.side {
	flex-shrink: 0;
	width: 200px;
}

.docs.side.list {
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.docs.text {
	margin-left: 0rem;
	padding-left: 2rem;
}

.docs.center {
	text-align: center;
}


/* ··· Contact ··· */

.cont.line {
	border-bottom: 1px dotted var(--black);
	height: 20px;
	width: 100%;
}

.cont.flex {
	gap: 20px;
}

#part_list {
	flex-wrap: wrap;
}


/* ··· View ··· */

#view {
	background-color: rgba(0,0,0,0.8);
	display: flex;
	justify-content: center;
	align-items: center;
	position: fixed;
	top: 0px;
	left: 0px;
	right: 0px;
	bottom: 0px;
}

#view_shot {
	border: 1px solid var(--black);
	border-radius: 5px;
	max-width: 90%;
	max-height: 90%;
	width: auto;
	height: auto;
	display: block;
}


/* ··· Copy ··· */

#copy {
	background-color: var(--black);
	color: var(--white);
	font-size: 0.75rem;
	padding: 20px;
}