/* CSS files add styling rules to your content */
.contenedor {
  background: #00000; 
  width: 50%
  max-width: 800px;
  height: 600px;
  
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
    
  justify-content: center;
  align-items: center;
}

body {
  font-family: Times New Roman;
  background-color: #FF0000;
  text-align: justify;
}

h1 {
  font-family: monospace, serif;
  font-style: normal;
  /*color: #DEDEDE;*/
  font-size:50px;
  align-content: center;
  padding: 0;
  margin: 0;
}

h2{
  font-family: monospace, serif;
  font-style: normal;
  /*color: #DEDEDE;*/
  font-size: 35px;
  margin: 30px;
}

h3{
  font-family: monospace, serif;
  font-style: normal;
  /*color: #DEDEDE;*/
  font-size: 25px;
  margin-left: 180px;
  margin-right: 210px;
}

a:link {
  color: #000000;
  text-decoration: none;
}

/* visited link */
a:visited {
  color: #000000;
  text-decoration: none;
}

/* mouse over link */
a:hover {
  color: #39FF14;
  text-decoration: none;
}

/* selected link */
a:active {
  color: #ed4824;
  text-decoration: none;
}



#myCanvas {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  overflow-y: hidden;
  position: fixed;
  background-size: cover;
  
}