html {
	height: 100vh;
	width: 100vw;
	overflow: hidden;
	font-family: calibri;
	color: rgba(218, 165, 47);
}

	body {
		height: 100%;
		width: 100%;
		background: linear-gradient(0deg,rgba(0, 0, 0) 0%, rgba(44, 2, 65, 1) 20%, rgba(44, 2, 65, 1) 75%, rgba(0, 0, 0) 99%);
	}

		#mainContent {
			position: relative;
			top: 50%;
			transform: translateY(-50%);
			width: 100%;
			text-align: center;
			font-size: 25px;
		}

			#mainContent img {
				position: relative;
				left: 50%;
				transform: translateX(-50%);
				display: block;
				max-height: 150px;
			}

