*{
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

a{
    text-decoration: none;
}

body{
    font-family: sans-serif;
    font-size:16px;
}

.contenedor{
    display: block;
    max-width: 1024px;
    margin: auto;
}

header{
    background-color: rgba(255,255,255,0.9);
    display: block;
    height: 70px;
    position: fixed;
    width: 100%;
    z-index: 100;
}

#menu-bar, .icon-menu{
    display: none;
}

nav ul{
    display: flex;
    list-style: none;
}

nav a{
    color:#000000;
    font-weight: bold;
    padding: 0.7em 0.4em;
}

nav a:hover{
    color: rgb(255,31,112);
    border-bottom: 0.1em solid rgb(241,116,12);
    
}

#contener-logo-menu{
    display: flex;
    align-items: center;
    justify-content: space-between;
}

header .contenedor, #contener-logo-menu{
    height: 100%;
}








