@import url('https://fonts.googleapis.com/css?family=Open+Sans&display=swap');

*{
	margin: 0;
	padding: 0;
}

body{
	font-family: 'Open Sans', sans-serif;
    color: white;
}

header{
	background-color: #A7745E;
	min-height: 80px;
    display: flex;
    justify-content: space-between;
    align-items:center;
}

header h1{
	font-size: 25px;	
    margin-right: 60px;
}

header nav{
	display: flex;
    justify-content: space-between;
    margin-left: 50px;	
}

header nav a{
	color: white;
	text-decoration: none;
	padding: 10px;
}

header nav a:hover{
	background-color: #B9A89B;
}

#introduction{
    background: url('cheval.jpg');
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    width: 100%;
    height: 100vh;
}


#introduction h2{
	padding: 45px;
    text-align: right;
    font-size: 80px;
    color: #eee;
    line-height: 85px;
}