*{
margin:0;
padding:0;
box-sizing:border-box;
font-family:Poppins;
}

body{
background:#f5f5f5;
}

/* NAVBAR */

nav{
background:#002855;
display:flex;
justify-content:space-between;
align-items:center;
padding:20px 50px;
}

.logo{
color:white;
font-size:28px;
font-weight:bold;
}

nav ul{
display:flex;
list-style:none;
}

nav ul li{
margin-left:20px;
}

nav ul li a{
color:white;
text-decoration:none;
font-size:18px;
}

nav ul li a:hover{
color:gold;
}

/* HERO */

.hero{
height:90vh;

background:
linear-gradient(rgba(0,0,0,0.5),
rgba(0,0,0,0.5)),
url('images/cam_map.svg');

background-size:contain;
background-repeat:no-repeat;
background-position:center;

display:flex;
justify-content:center;
align-items:center;
flex-direction:column;

color:white;
text-align:center;
}

.hero h1{
font-size:60px;
}

.hero p{
font-size:24px;
margin-top:20px;
}

.hero button{
margin-top:30px;
padding:15px 35px;
border:none;
border-radius:40px;
background:gold;
font-size:18px;
cursor:pointer;
}

/* MAP */

.map-section{
padding:50px;
text-align:center;
}

.map-image{
width:80%;
max-width:850px;
}

/* PROVINCE PAGE */

.banner{
height:60vh;
background-size:cover;
background-position:center;

display:flex;
justify-content:center;
align-items:center;

font-size:60px;
font-weight:bold;
color:white;

text-shadow:3px 3px 10px black;
}

.info{
width:80%;
margin:auto;
margin-top:-50px;

background:white;
padding:40px;

border-radius:20px;

box-shadow:0 5px 15px rgba(0,0,0,0.2);
}

.info h2{
margin-top:20px;
color:#002855;
}

.info p{
line-height:1.8;
margin-top:10px;
}

/* FOOTER */

footer{
background:#002855;
color:white;
text-align:center;
padding:20px;
margin-top:50px;
}