@import url('https://fonts.googleapis.com/css?family=Open+Sans:400,600|Source+Sans+Pro:400,600');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background: #37375E;
    color: #FE875D;

}

a {
    text-decoration: none;
}

.contenedor { 
    max-width: 90rem; 
    margin: auto;
}

/* MENU */

nav {
    text-align: center;
    margin-bottom: 2rem;
    margin-top: 2rem;
    background: #FE875D;
}


nav ul li {
    display: inline-block;
    font-family: 'Source Sans Pro', sans-serif;
    padding: 0.5rem 1.5rem 0.5rem 1.5rem;
    margin-top: 1rem;
    margin-bottom: 1rem;
    color: black;
}

li:hover {
    text-decoration: none;
    box-shadow: 0rem 0.3rem 0rem #37375E;
}

header {
    margin-bottom: 3rem;
    margin-top: 3rem;
    
}

.mapa {
    display: block;
    margin: auto;
    max-width: 70rem;
}


/* headings */

h1 a{
    font-family: 'Open Sans', sans-serif;
    font-weight: 500;
    font-size: 3rem; 
    text-align: center;
    margin-bottom: 2rem;
    margin-left: 35rem;
    color: #FE875D;
}


h2 {
    font-family: 'Source Sans Pro', sans-serif;
    text-align: center;
    font-size: 1.75rem;
    font-weight: 500;
}

h3 {
    font-family: 'Source Sans Pro', sans-serif;
    font-weight: 300;
    font-size: 1rem;
    text-align: center;
    margin-bottom: 2rem;
}

h4 {
    font-family: 'Source Sans Pro', sans-serif;
    margin: 1rem 1rem 2rem 1rem;
    font-size: 1rem;
}




/* estructura */
main {
    background-color: ##ffefdf;
    font-family: 'Source Sans Pro', sans-serif;
    padding-top: 1.5rem;
    max-width: 70rem;
    margin: auto;
}


footer {
    width: 70%;
    margin: 3rem auto 3rem auto;
}

.footerText {
    text-align: center;
    color: #ff9d3b;
    font-family: 'Source Sans Pro', sans-serif;
    font-weight: 300i;
    font-size: 1rem;
}

article p {
    font-weight: 400;
    width: 70%;
    text-align: center;
    margin: auto;
}

/* Style The Dropdown Button */
.dropbtn {
    background-color: #fff;
    color: #FE875D;
    padding: 16px;
    font-size: 16px;
    border: none;
    cursor: pointer;
}

/* The container <div> - needed to position the dropdown content */
.dropdown {
    position: relative;
    display: inline-block;
}

/* Dropdown Content (Hidden by Default) */
.dropdown-content {
    display: none;
    position: absolute;
    background-color: #fff;
    min-width: 160px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 1;
}

/* Links inside the dropdown */
.dropdown-content a {
    color: #37375E;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    font-size: 1rem;
    font-family: 'Source Sans Pro', sans-serif;
    text-align: left;
    font-weight: 600;
}

/* Change color of dropdown links on hover */
.dropdown-content a:hover {background-color: #f1f1f1}

/* Show the dropdown menu on hover */
.dropdown:hover .dropdown-content {
    display: block;
}

/* Change the background color of the dropdown button when the dropdown content is shown */
.dropdown:hover .dropbtn {
    background-color: #37375E;
}