@font-face {
    font-family: 'rumble_braveregular';
    src: url('fonts/rumble_brave-webfont.woff2') format('woff2'),
         url('fonts/rumble_brave-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;

}

*{
	margin:0;
	padding:0;
}

body{
	display:flex;
	flex-direction:column;
	gap:50px;
}

header{
	background-image:url('images/eiffel.png'), url('images/emily.jpg');;
	background-repeat:no-repeat;
	background-size:contain;
	background-position:bottom 0px left 10%,bottom 0px right 10%;
	margin-bottom:10px;
}
header h1{
	font-family:'rumble_braveregular';
	font-size:7vw;
	text-align:center;
}

header p{
	text-align:center;
	font-style:italic;
	font-size:2vw;
	position:relative;
	top:-13px;
}

nav{
	display:flex;
	flex-direction:column;
	gap:50px;
}
nav h2{
	text-align:center;
	font-family:'rumble_braveregular';
	font-size:6vw;
	cursor:pointer;
}

body a{
text-decoration:none;
color:red;
}



