html, body {
	margin: 0;
	padding: 0;
	width: 100%;
	height: 100%;

	font-family: sans-serif, Verdana, Geneva, Tahoma;
}


.backyard > .basket {
	top: unset;
	left: unset;
	bottom: 0 !important;
}

.yard {
	display: grid;
	margin-top: 4%;
	position: relative;
}

.basket {
	margin: 0 10px;
	display: flex;
	flex-direction: column;
	grid-row: 1;
	position: absolute;
	top: 0;
	left: 0;
}

.basket.at-end-of-yard {
	text-align: end;
	right: 0;
	left: unset;
}

.basket > .name {
	color: #808080;
	margin-top: 0px;
	margin-bottom: max(1.2vw, 20px);
	font-size: max(1.4vw, 20px);
}

.basket > .egg {
	color: #dfdfdf;
	text-decoration: none;

	margin-bottom: max(1.2vw, 20px);

	font-size: max(1.2vw, 16px);
}

.basket > .egg.cracked {
	text-decoration: line-through;
}

.centered-container {
	display: flex;
	justify-content: center;
	align-items: center;
	flex-grow: 1;
}



.hello-darkness-my-old-friend {
	display: flex;
	flex-direction: column;
	background-color: #21212e;
}

.ive-come-to-stalk-you-again,
.ive-come-to-talk-to-you-again {
	color: #dfdfdf;
	font-size: 5em;
	user-select: none;
	-moz-user-select: none;
	-webkit-user-select: none;
	-ms-user-select: none;
	text-align: center;
}

.ive-come-to-talk-to-you-again{
	display: inline-block
}

.letter-container {
	float: left;
	margin: 4px;
	transition: width 1s;
	width: auto;
}

.letter-container.changing {
	width: 0.9em;
	/* opacity: 0; */
}

.ive-come-to-stalk-you-again {
	color: #b6b6b6;
	font-size: 1.5em;
}

.because-a-vision-softly-creeping {
	position: absolute;
	bottom: 2px;
	left: 2px;

	color: #808080;
	font-size: 0.8em;
}


.dock {
	/* position: absolute; */
	/* bottom: 0px; */
	width: 100%;
}

.dock.opened .left-its-seeds-while-i-was-sleeping {
	display: inline-block;
}

.dock .expand {
	cursor: pointer;
}

.left-its-seeds-while-i-was-sleeping {
	display: inline-block;
	width: 100%;
	padding: 1em;
}

.left-side, .right-side {
	width: 40%;
}

.left-side {
	float: left;
}

.right-side {
	float: right;
}

.project {
	margin-bottom: 1em;
	padding: 5px;
	/* background-color: #333344; */
	background: url('/img/ducks.png') repeat fixed center top #333344;
	color: white;
	width: 100%;
	border-radius: 8px;
	min-height: 10em;
	overflow: hidden;
	position: relative;
}

.project:hover .content,
.project:hover .content .description,
.project:hover .content .buttons .button {
	opacity: 1;
}


.project .mask {
	display: flex;
	justify-content: center;
	align-items: center;
	height: 10em;
	width: 100%;

	transition: all 0.2s ease-in-out;
}

.project .mask .name {
	color: #dfdfdf;
	display: block;
	font-size: 1.5em;
	user-select: none;
	-moz-user-select: none;
	-webkit-user-select: none;
	-ms-user-select: none;
}


.project .content {
	background: url('/img/ducks.png') repeat fixed center top #333344;
	z-index: 10;
	opacity: 0;
	transition: all 0.2s ease-in-out;

	position: absolute;
	top: 0px;
	left: 0px;

	padding: 4px;
}

.project .content .description {
	color: #bbbbbb;
	opacity: 0;
	transition: all 0.2s ease-in-out;
}

.project .content .buttons {
	margin-top: 8px;
	padding: 2px;
	display: flex;
}

.project .content .buttons .button {
	padding: 10px 10px;
	width: 50%;
	margin: 2px;
	color: #dfdfdf;
	text-decoration: none;
	background-color: #262636;
	text-align: center;
	opacity: 0;
	transition: all 0.2s ease-in-out;
}

.project .content .buttons .button:hover {
	background-color: #161620;
}