@charset "utf-8";

*{
    box-sizing: border-box;
}


body {
  margin: 0;
  color: hsl(0 0% 30%);
  background-color: hsl(0 0% 95%);
}

/* selector multiple: parrafos e items de listas  */
p,
li {
  /* se evitan "viudas" y "huerfanos" */
  text-wrap: pretty;
}

a {
 
  color: blueviolet;
  font-weight: bold;
}

/* "TODAS" las listas */
ul,
ol {
  /* elimina bullets, numeros etc. */
  list-style: none;

  /* retira el relleno izquierdo predeterminado */
  padding: 0;
}


.contenedora {

  
  max-width: 65rem;

  margin-inline: auto;

  padding: 1rem;
}










head{
    display: none;
}

header{
  width: 100%;
}

.contenedora {
  background-color: blue;
  display: flex;
  text-align: center;
  flex-direction: column;
  flex-wrap: nowrap;
  align-content: center;
  justify-content: space-evenly;
  align-items: stretch;
  
}
.contenedora a{
  color: blue;
  background-color: skyblue;
  padding: 5px;
  border-radius: .25em;
}
#logo {
    width: 20%;
    padding: .25rem ;
    display: flex;
}
header ul{
    display: flex;
    align-items: center;
   
}
.Menú{
    display: flex;
    margin-inline-start: 0px;
    margin-inline-end: 0px;
    unicode-bidi: isolate;
    justify-content: flex-end;
    flex-direction: row;
}
.Menú li{
    justify-content: space-between;
    align-items: center;
    margin: 5px;
    text-align: right;
    margin-right: center;
    margin-bottom: 2px;
    
    
}
.Menú nav ul li {
  padding-bottom: 20px;

  }



  body{
    min-height: 100dvh;
    display: grid;
    grid-template-rows: auto ;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    margin: 0;
    color: hsl(0, 0%, 0%);
    background-color: black;

}