/* CSS files add styling rules to your content */

.contenedor {
  background: #00000; 
  width: 50%
  max-width: 800px;
  height: 500px;
  
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
    
  justify-content: center;
  align-items: center;
}
body {
  font-family: monoscape, sans-serif;
  background-color:#000000;
  margin: 1em;

}

h1 {
  text-align:center;
  margin: 1em;
  font-style: normal;
  color: #f00707;
  font-family: 'Share Tech Mono', monospace;
  font-size: 30px;
  color: #f542f5;
  padding: 1px;
  background-color: rgba(12, 113, 247, 0.75);

}

h2 {
  text-align:center;
  margin: auto;
  font-style: normal;
  color: #f00707;
  font-family: 'Share Tech Mono', monospace;
  font-size: 20px;

}

.container{
display: flex; 
}

#texto1{
  font-size: 40px;
  position:absolute;
  top: 25%;
  font-family: 'Share Tech Mono', monospace;
}


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

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

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

/* selected link */
a:active {
  color: #373fff;
  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;
}
