/*
* FABI VALLEJO
*
* -------------------------------------------------------------------
*/

body{
 font-family: 'Orbitron', sans-serif;
 background-color: black;
 font-size: 18px;
}
h1{
  color: blue;
  font-size: 36px;
  font-weight: 700;
  font-family: 'Orbitron', sans-serif;
}
p{
 color: red;
}

.contenedor {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    background-color: transparent;
}

.head {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    background-color: transparent;
    color: #fff;
    padding: 1em;
    text-align: left;
    z-index: 1;
}

.contenedor-texto {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: #fff;
    background-color: transparent;
    z-index: 1;
}

#canvas {
    width: 100%;
    height: 100vh;
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 0;
}

.footer {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    background-color: transparent;
    color: #fff;
    padding: 1em;
    text-align: center;
    z-index: 1;
}
