@charset "utf-8";

* {
    box-sizing: border-box;
    list-style: none;
    text-decoration: none;

}

body {
    font-family: 'Raleway', sans-serif;
    min-height: 100vh;
    background-color: dimgray;
}

h1, h2, h3, h4 {
    font-family: 'Michroma', Verdana, sans-serif;
    
    font-weight: bolder;
    text-overflow: ellipsis;
}

h1, h2 {
    color: white;
    text-align: center;
}

ul {
    padding: 0;
}

/*-- logo --*/

/*-- menu sidenav --*/

@media screen and (min-width: px) {
    

    header > * {
        display: flex;
    }
    
    #menu {
        flex: 1;
    }
    
    #menu ul {
        padding: 0 1em;
        
        display: flex;
        
        justify-content: space-between;
    }

    .closebtn, #burger {
        display: none;
    }
    
    #menu ul li a {
        padding: 0.5em;
        color: black;
        background-color: antiquewhite;
    }
    
    #menu ul li a:hover {
        background-color: coral;
    }
    
}

@media screen and (max-width: 600px) {
    
.logo {
    width: 100%;
    background-color: dimgray;
}
 
.sidenav {
  height: auto;
  width: 100%;
  position: fixed;
  z-index: 1;
  top: 0;
  right: 0;
  background-color: black;
  overflow-x: hidden;
  transition: 0.5s;
}

.sidenav a {
  text-align: center;
  text-decoration: none;
  font-size: 18pt;
  color: white;
  display: block;
  transition: 0.3s;
}

.sidenav a:hover {
  color: coral;
}

.sidenav .closebtn {
  text-align: right;
  padding-right: 0.4em;
  right: 0;
  font-size: 40pt;
}

#burger {
  position: absolute;
  background-color: dimgray;
  color: black;
  right: 0;
  top: 0;
  transition: margin-left .5s;
  padding: 1em;
  
}
   
}

/*--- fin menu sidenav ---*/

/*-- body --*/

.info {
    text-align: center;
    
    margin: 1em;
    padding: 1em;
    background-color: white;
}

.formales {
    margin: 1em;
    padding: 1em;
    background-color: white;
    text-align: center;
}

.formales img {
    width: 15em;
}

.boldtext {
    font-weight: bolder;
    font-size: 17pt;
}



@media screen AND (min-width: 600px) {
    
    .info {
        display: flex;
        flex-direction: row;
    }
    
    h1 {
        margin-top: 0;
    }
    
}


main div figure figcaption {
    margin-top: 1em;
}

main div figure img {
   width: 10em; 
}


.mapa {
    display: block;
    min-width: 50rem;
}

.webapp {
    display: block;
    padding-top: 0.5em;
    padding-bottom: 0.5em;
    
    max-width: 50rem;
}

.comitente, .item {
    color: antiquewhite;
    padding: 1em;
    border-style: solid;
    border-width: thin;
    margin-bottom: 1em;
}


aside nav {
    display: flex;
    justify-content: space-between;
    text-align: center;
    
    width: 100%;
}

aside nav > * {
    padding: 1em;
    text-decoration: none;
    color: antiquewhite;
}

aside nav > *:hover {
    background-color: coral;
}

@media (max-width: 600px) {
    .mapa {
        min-width: 5rem;
    }
}

@media (max-width: 900px) {
    .mapa {
        min-width: 30rem;
    }
}




/*-- footer --*/

footer {
    color: antiquewhite;
    margin-top: 2em;
    font-size: 12pt;
    
    text-align: center;
    width: inherit;
    padding: 1em;

}