/* ==[Main rules]========================================================================================== */

a {
	color: #89c2ff;
	text-decoration: none;
}

a:hover {
	color: #ed88fb;
}

body {
	margin: 20px;
	text-align: center;
}

body, html {
	background: #000;
	color: #e6e6e6;
	font: 16px Helvetica, Arial, sans-serif;
}

#main-image {
	width: 100%;
	height: 100%;
	max-height: 600px;
	border-radius: 30px;
	object-fit: cover;
	transition-duration: 0.1s;
}

#main-image-container {
	position: relative;
}

#main-image-gradient {
	position: absolute;
	top: 0;
	width: 100%;
	height: 100%;
	border-radius: 30px;
	background: linear-gradient(to top, #151515, transparent 50%);
}

#main-navigation {
	width: calc(100% - 40px);
	margin: 20px;
	padding: 0;
}

#main-title {
	position: absolute;
	bottom: 20px;
	width: 100%;
	margin-top: 20px;
	text-align: center;
	color: #fff;
	font-size: 2em;
	text-shadow: 1px 1px 2px black, 0 0 1em black;
	cursor: default;
}

#wrapper {
	display: inline-block;
	width: calc(100% - 210px);
	max-width: 1224px;
	text-align: left;
}

/* ==[ Mobile devices ]==================================================================================== */

@media only screen and (max-width: 770px) {
	body {
		margin: 0;
	}
	#main-image {
		width: 100vw;
	}
	#wrapper {
		display: block;
		width: auto;
	}
}