I need to make a site that looks like this one: https://drive.google.com/file/d/1bvV7UFjC_lg6QdNeTK7Er_chQqwfPmny/view?usp=sharing Right now it sort of looks like that one, but the first div (the one with the background image) doesn´t take up half the height and width of the viewport. Any ideas on how I could fix it?
HTML:
<div id="main-menu">
<p id="invitation_title">
Escapate a
</p>
<p id="city_title">Nueva York</p>
<Menu />
<FlightSelector />
</div>
CSS
#main-menu{
text-align:center;
background-image: url('http://hdwpro.com/wp-content/uploads/2018/02/new-york-background-image.jpg');
background-position: center;
background-repeat: no-repeat;
background-size: cover;
width:100%;
height:100%;
}