head{
    width: 80%;
    margin: 1em ;
    padding: 1em;
}
body {
    background-color: #A6D2EE;
    box-sizing: border-box;
    font-family: sans-serif;
    }

img{
   width: 160px;
   height: 50px;
}
    
header {
    color: white;
    background-color: #0E5E93;
    padding: 1em;
    }
footer {
    color: white;
    background-color: #0E5E93;
    padding: 1em;
    font-size: 8pt;
    }

/* 'a' es el header que dice Agua segura*/
a{
  color: white;
}

header h1 {
    float:inherit;
}
article {
    background-color: #A6D2EE;
}

#donapls{
    width: 160px;
   height: 160px;
}


#button {
 padding: 0;
 width: 100%;
 }
#button li {
 display: inline;
 }
#button li a {
 font-family: Arial;
 text-decoration: none;
 float: left;
 padding: 10px;
 background-color: #2175bc;
 color: #fff;
 }
#button li a:hover {
 background-color: #2586d7;
 margin-top: -2;
 padding-bottom: 12px;]
 }

form {
    /* Sólo para centrar el formulario a la página */

    /* Para ver el borde del formulario */
    padding: 1em;
    border: 1px solid #CCC;
    border-radius: 1em;
}

form div + div {
    margin-top: 1em;
}
label {
    /* Para asegurarse que todos los labels tienen el mismo tamaño y están alineados correctamente */
    width: 50px;
    text-align: right;
}
input, textarea {
    /* Para asegurarse de que todos los campos de texto tienen las mismas propiedades de fuente
       Por defecto, las areas de texto tienen una fuente con monospace */
    font: 1em sans-serif;

    /* Para darle el mismo tamaño a todos los campos de texto */
    width: 300px;
    -moz-box-sizing: border-box;
    box-sizing: border-box;

    /* Para armonizar el look&feel del borde en los campos de texto */
    border: 1px solid #999;
}

.button {
    /* Para posicionar los botones a la misma posición que los campos de texto */
    padding-left: 90px; /* mismo tamaño a todos los elementos label */
}
button {
    /* Este margen extra representa aproximadamente el mismo espacio que el espacio
       entre los labels y sus campos de texto */
    margin-left: .5em;
}


a.button {
    width: 80px;
    -webkit-appearance: button;
    -moz-appearance: button;
    appearance: button;
    text-align: justify;
    text-decoration: none;
    color: darkblue;
}

/* MenuToggle */
/* Posicion del menuToggle */
#menuToggle
{
  display: block;
  position: fixed;
  top: 30px;
  left: 30px;
  
  z-index: 1;
  
  -webkit-user-select: none;
  user-select: none;
}

/* Posicion y tamaño del input dentro del menuToggle */
#menuToggle input
{
  display: block;
  width: 40px;
  height: 32px;
  position: absolute;
  top: -10px;
  left: -10px;
  
  cursor: pointer;
  
  opacity: 0; 
  z-index: 3; 
  
  -webkit-touch-callout: none;
}

/* Diseño de los tres span del menuToggle */
#menuToggle span
{
  display: block;
  width: 33px;
  height: 4px;
  margin-bottom: 5px;
  position: relative;
  
  background: #cdcdcd;
  border-radius: 3px;
  
  z-index: 1;
  
  transform-origin: 4px 0px;
  
  transition: transform 0.5s cubic-bezier(0.77,0.2,0.05,1.0),
              background 0.5s cubic-bezier(0.77,0.2,0.05,1.0),
              opacity 0.55s ease;
}

/* Animacion del segundo span caundo se apreta */
#menuToggle span:first-child
{
  transform-origin: 0% 0%;
}


#menuToggle span:nth-last-child(2)
{
  transform-origin: 0% 100%;
}

/* Animacion del tercer span caundo se apreta */
#menuToggle input:checked ~ span
{
  opacity: 1;
  transform: rotate(45deg);
  z-index: 2;
}

/* Animacion del segundo span caundo se apreta */
#menuToggle input:checked ~ span:nth-last-child(3)
{
  transform: rotate(0deg);
  background-color: transparent;
  z-index: 1;
  width: 0;
}

/* Animacion del primer span caundo se apreta */
#menuToggle input:checked ~ span:nth-last-child(2)
{
  opacity: 1;
  transform: rotate(-45deg);
  z-index: 2;
}

/* Diseño y posicion del menu de navegacion */
#menu
{
  position: sticky;
  width: 200px;
  height: 100vh;
  margin: -57px 0 0 -50px;
  padding-top: 50px;
 text-decoration: none;
  background: #0E5E93;
  list-style-type: none;
  -webkit-font-smoothing: antialiased;

  /* to stop flickering of text in safari */
  
  transform-origin: 0% 0%;
  
  transition: transform 0.5s cubic-bezier(0.77,0.2,0.05,1.0);
}

/* Transicion del menu de navegacion para cerrarlo */
#menuToggle input:not(:checked) ~ #menu
{   
  transform: translate(-100%, 0);
}

/* Transicion del menu de navegacion para abrirlo */
#menuToggle input:checked ~ #menu
{
  transform: translate(0%, 0);
}

/* menu items (items de la barra de navegacion) */
#menu li {
    padding: 1em 0;
    font-size: 22px;
}

h1{
    text-align: center
}

header ul li {
    display: flex; 
    align-items:center;     
}