*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}
body{
    overflow: hidden;
    background: black;
}
.canvas1{
    display: block;
    position: absolute;
    top: 0px;
    left: 0px;
    height: 100vh;
    width: 100vw;
    z-index: -1;
    zoom: 1;
}

.container{
    position: absolute;
    margin-left: auto;
    margin-top: auto;
    bottom: 10px;
    left: 0px;
    width: 100%;
    text-align: center;
    vertical-align: middle;
    z-index: 3;
    display: inline-block;
    background-color: transparent;
    background-color: rgba(0, 0, 0, 0.8);
    color: #ffffff;
    font-size: 30px;
    line-height: 50px;
    filter:blur(10px)
    font-weight: 300;
    letter-spacing: 6px;
    text-shadow: 
        1px -1px 1px #ffffff, 
        2px -2px 1px #00aa00, 
        3px -3px 1px #008800, 
        4px -4px 1px #006600, 
        5px -5px 1px #004400, 
        6px -6px 1px #002200;
    animation: donme 7s linear infinite;
    transform-origin: center;
}
.container .text{
    display: inline-block;
    vertical-align: middle;
    line-height: 1;
    position: relative;
    top: 0px;
    color: #00ff00;
}
@keyframes donme {
    0% {
      transform: rotate(0deg,360deg);
    }
    100% {
      transform: rotate(360deg,0deg);
    }
  }

  .cursor {
    display: inline-block;
    vertical-align: middle;
    animation: blink 2s infinite;
    color: #ffffff;
  }
  @keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0; }
  }
  #matrix{
    position: absolute;
    display: block;
    margin: auto;
    left:50%;
    bottom:70px;
    transform: translate(-50%, 0px);
    z-index: 66;
  }
  .tel{
    z-index: 1199;
    text-align: center;
    position: absolute;
    bottom:70px;
    left: calc(50% + 240px);
    color: white;
    font-size: 26px;
  }
  .mail{
    z-index: 1199;
    text-align: center;
    position: absolute;
    bottom:70px;
    right: calc(50% + 240px);
    color: white;
    font-size: 26px;
  }