/* Estilo del canvas
  Lo bordeamos con una línea negra y le damos fondo
  azul para distinguirlo
*/

/*Añadida fuente nasa*/
@font-face{
  font-family: letranasa;
  src: url('letranasa.ttf');
}

body {
  background-image: url("nubes.jpg");
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-size: 100% 100%;
  color: white;
  font-family: letranasa;

}
canvas {
    background-color: rgba(0, 0, 0, 0.75);
    margin-left: 33%;
    border-style: solid;
    border-width: 1px;
    border-color: rgb(255, 255, 255);
    border-radius: 5px;
    font-family: letranasa;
  }

  h2{
    text-align: center;
    color: rgb(36, 10, 85);

  }