		body {
			height: 100%;
			margin: 0;
			padding: 0;
			background-color: black;
		}
		h1{
			font-size: 16px;
		}
		.wrapper {
			min-height: 100%;
			display: flex;
			flex-direction: column;
		}
		
		.header {
			background-color: #1C1C1C;
			color: #fff;
			padding: 1px;
			text-align: center;
		}
		
		.footer {
			background-color: #1C1C1C;
			color: #fff;
			text-align: center;
			position: absolute;
			width: 99.8%;
			bottom: 0;
		}
		
		.content {
			display: flex;
			flex-direction: column;
			align-items: center;
			padding: 20px;
		}
		
		.block {
			display: flex;
			flex-direction: column;
			align-items: center;
			padding: 10px;
		}
		
		.options {
			margin-bottom: 20px;
			width: 100%;
			max-width: 600px;
			color: white;
		}
		
		.options img {
			width: 100%;
			height: auto;
		}
		.Text {
		margin: 25px;
		flex: 1 1 auto;
		width: 450px; 
		text-align: justify;
		color: white;
		font-size: 19px;
		}
		.button {
		opacity: 60%;
		}
		.button:hover {
		opacity: 100%;
		}
		
		.about {
			margin: 25px;
			flex: 1 1 auto;
			width: 450px;
			color: white;
			}
			
		#menu-table {
		display: table;
		width: 90%;
		}	
		
		#menu-table li {
		display: table-cell;
		border-right: 1px solid #00000;
		text-align: left;
		}
		
		#menu-table li:hover {
		background: ;
		}
		
		#next a{
			font-size: 18px;
			text-decoration: none;
			color: #424242	;
		}
		#next a:hover{
			font-size: 18px;
			text-decoration: none;
			color: #848484;
		}
		#footer{
			font-size: 25px;
			text-decoration: none;
			color: #F2F2F2;
		}
		
		@media (min-width: 768px) {
			p {
				font-size: 20px;
			}
			h1 {
				font-size: 20px;
			}
			
			.Text {
			margin: 25px;
			flex: 1 1 auto;
			width: 600px;
			}
			
			.about {
			margin: 25px;
			flex: 1 1 auto;
			width: 600px;
			color: white;
			}
			
			.content {
				flex-direction: row;
				justify-content: space-between;
			}
			
			.options {
				margin-bottom: 0;
				width: 45%;
				color: white;
			}
		}
		
		@keyframes fadeIn {
			from {
				opacity: 0;
			}
			to {
				opacity: 1;
			}
		}

		#fade {
			animation: fadeIn 1.7s;
		}