body{
    background:url("matrix.jpg") no-repeat center center fixed;
      background-color:#000;
      background-size: auto;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;    
	font-family: Montserrat,sans-serif;
    color: #fff;
    margin:0 auto;
}       

h4,h6{
    color:#888;
}

.head{
    background-color: rgba(0,0,0,0.8);
    text-align: center;            
    position: absolute;
    width: 100vw;
    font-family: Inter,ui-sans-serif,system-ui,-apple-system,BlinkMacSystemFont,Segoe UI,Roboto,Helvetica Neue,Arial,Noto Sans,sans-serif,"Apple Color Emoji","Segoe UI Emoji",Segoe UI Symbol,"Noto Color Emoji";    
}

.head .logo{
	width: 20% !important;
}

.head .title{    
    font-size: 40px;
    font-weight: 500;
    font-family: Inter,ui-sans-serif,system-ui,-apple-system,BlinkMacSystemFont,Segoe UI,Roboto,Helvetica Neue,Arial,Noto Sans,sans-serif,"Apple Color Emoji","Segoe UI Emoji",Segoe UI Symbol,"Noto Color Emoji";
}

.head img{
    padding:10px;
    padding-top:20px;            
    padding-bottom: 20px;
    margin-top: 2%;
    margin-bottom: 1%;
}

.head a{
    text-decoration: none;    
}

.head button{
    color:#000;
    background-color: #ffa200;    
    border:0;
    font-size: 25px;
    font-weight: 500;
    margin-top: 40px;
    width: 287px;
    padding: 20px;
    border-radius: 20px;       
}

.head button a{
    color:#000;
}

.app{
    font-family: ubuntu !important;
    font-weight: normal;
    font-size: 25px;     
    margin-top: 5%;
}

#fade {
  display: none;
  position: fixed;
  top: 0%;
  left: 0%;
  width: 100%;
  height: 100%;
  background-color: black;
  z-index: 1001;
  -moz-opacity: 0.8;
  opacity: .80;
  filter: alpha(opacity=80);
}

#light {
  display: none;
  position: absolute;
  top:0%;
  left: 38%;
  max-width: 779px;
  max-height: 500px;
  background: #FFF;
  z-index: 1002;
  overflow: visible;  
}

#boxclose {
  float: right;
  cursor: pointer;
  color: #fff;
  border: 1px solid #AEAEAE;
  border-radius: 3px;
  background: #222222;
  font-size: 31px;
  font-weight: bold;
  display: inline-block;
  line-height: 0px;
  padding: 11px 3px;
  position: absolute;
  right: 2px;
  top: 2px;
  z-index: 1002;
  opacity: 0.9;
}

.boxclose:before {
  content: "×";
}

#fade:hover ~ #boxclose {
  display:none;
}

.head .video{	
    color:#000;
    background-color: #fff;   
}

.steps{
  z-index: 10000;
  bottom: 0px;
  margin: 0 auto;
  text-align: center;
  width: 100%;
}

.app h1 {
  overflow: hidden; /* Ensures the content is not revealed until the animation */
  border-right: .15em solid #fff; /* The typwriter cursor */
  white-space: nowrap; /* Keeps the content on a single line */
  margin: 0 auto; /* Gives that scrolling effect as the typing happens */
  animation: 
    typing 3.5s steps(40, end);
}

/* The typing effect */
@keyframes typing {
  from { width: 0 }
  to { width: 100% }
}

/* The typewriter cursor effect */
@keyframes blink-caret {
  from, to { border-color: transparent }
  50% { border-color: #fff; }
}