	body {		
				/* background-color: #269e3a; */
				max-height: 100vh;
				margin: 0;
				background-image: url(background_desktop.jpg);
				font-family: Roboto, Arial, Helvetica, sans-serif;
				background-repeat: no-repeat;
				background-attachment: fixed;
				background-size: cover;
				background-position: center center;
				display: flex;
				height: 100vh;
				color: #9e3a26;
			}
			p {
				color: #fff;
				font-size:32px;
			}
			span.contrast {
				color: #268a9e;
			}
			h1 {
			display: inline-block;
			  background-color: #fff;
			  padding: 6px 20px;
			  border-radius: 20px;
			}			
			.container {
			width: 100%;
			display: flex;
			flex-direction: row;
			flex-wrap: nowrap;
			justify-content: center;
			align-items: center;
			align-content: center;
		  }
		.container .item {
			display: block;
			flex-grow: 0;
			flex-shrink: 1;
			flex-basis: auto;
			align-self: auto;
			order: 0;
			text-align: center;
			width: 100%;
			max-width: 768px;
			background-color: #269e3a;
			background: rgba(38,158,58, 0.3);			
		}
				
		@media only screen and (max-width: 768px) {
			body {
				background-image: url(background_mob.jpg);
			}
		}
