*{
    margin: 0;
    padding: 0;
}

.contenedor{

    display: flex;

}

nav{    

    display: flex;
    align-self: center;
    justify-content: center;
    background-color: #cca525;
 
}

nav > div> a > h2{

text-transform: uppercase;
width: 100%;
height: 100%;
display: flex;
align-items: center;
justify-content: center;
font-size: 16px;
}


ul{

    display: none;
    position: absolute;
    background-color: #cca525;
}

h2:hover ul{

    display: block;
    
    
    
}

.text{
    
float: left;
padding: 5px 1px;
text-align: center;
text-transform: uppercase;
width: 100%;
height: 100%;
font-size: 16px;
align-items: center;    
   
}

.text:hover{
    transform: scale(1.1);
    background-color:  rgb(18, 79, 90);
    box-shadow: 0px 0px 10px 0px;

}
.menu > li > a{
    font-size: 16px;
    display: flex;
    align-items: center;
    padding: 5px 1px;    
    
}
.menu > li > a:hover{
    background-color:  rgb(18, 79, 90);
}
.contentdireccion{
display: flex;

}
.direccion{
align-self: center;
text-decoration: none;
color: black;
padding: 20px;

}


