body {
   background-color: #fff;
}

input[type="file"] {
  font-weight: bold;
  font-size:50px;

  border: 1px solid #900;
}

input[type="file"]:hover {
  color: #000;
}

input[type="submit"] {
  color: #900;
  background: #004481;
  font-weight: bold;
  font-size:80px;
  border: 1px solid #900;
}
 
input[type="submit"]:hover {
  color: #FFF;
  background: #004481;
}

input[type="text"] {
  display: block;
  margin: 0;
  width: 100%;
  font-family: sans-serif;
  font-size: 70px;
  appearance: none;
  box-shadow: none;
  border-radius: none;
}
input[type="text"]:focus {
  outline: none;
}

h1 {
  font-size: 100px; /* tamaño de la fuente */
}
nav ul {
  list-style: none;
}

nav li {
 /* float:left; */ 
/* opcional para hacerla horizontal */
  margin-right: 3px; /* espaciar un poco los botones */
}
nav a {
  display: block;
  text-decoration: none;
  /* a partir de aquí el diseño */
  color: #fff; /* color tipográfico */
  font-family: sans-serif; /* familia tipográfica */
  font-size: 100px; /* tamaño de la fuente */
  background-color: #004481; /* color de fondo */
  border: 1px solid #038265;
  padding: 10px 20px; /* más cuerpo al botón */
  border-radius: 3px; /* puntas redondeadas*/
}
nav a:hover {
  background-color: #0044FF; /* un simple cambio de fondo para cuando pasamos por encima */
}