body {
    font-family: Arial;
    color: #333;
    background-color: #DEC2A4;
}

header, footer {
    background-color: #935A35;
    text-align: center;
    height: 100px;
    display: flex;
    justify-content: center;
    align-items: center;
}

h1 {
    font-size: 8vw;
}

h2 {
    text-align: center;
    font-size: 5vw;
}

footer {
	margin-bottom: 500px;
}

section {
    background-color: #DEC2A4;
    padding: 20px 0;
}

article {
	margin: auto;
	width: 80%;
	font-family: Arial;
	color: #666;
	font-size: 14px;
	line-height: 1.3em;
    display: flex;
    flex-direction: column;
}

.alignright {
	display: block;
	float: right;
	padding-left: 15px;
	max-width: 50%;
}

#parallax-1 { 
    /* The image used */
    background-image: url("images/camels2.jpg");
	
    /* Create the parallax scrolling effect */
    background-attachment: fixed;
    background-position: top;
    background-repeat: no-repeat;
    background-size: contain;
    padding-top: 30%;
}

#parallax-2 { 
    /* The image used */
    background-image: url("images/horse.jpg");


    /* Create the parallax scrolling effect */
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    padding-top: 50%;
}

#parallax-3 { 
    /* The image used */
    background-image: url("images/kasbah2.jpg");

    /* Set a specific height */
    height: 500px; 

    /* Create the parallax scrolling effect */
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
}

#parallax-4 { 
    /* The image used */
    background-image: url("images/camels.jpg");

    /* Set a specific height */
    height: 500px; 

    /* Create the parallax scrolling effect */
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
	
	/*position: relative;*/
	display: flex;
	justify-content: center;
	align-items: center;
}

#parallax-4 div {
	/*position: absolute;
	top: 30px;
	right: 30px;*/
	width: 150px;
	background: rgba(255,255,255,0.5);
	padding: 15px;
	font-size: 24px;
	line-height: 1.5em;
}

