/* css as usual */

body {
	color: #ffcc00;
	font-family: "Courier", monospace;
	background-color: #555555;
}

p {
	width: 1200px;
}

.main_logo { width: 150px; }

.secure_image { width: 400px;}

/* condition for screen size maximum of 1200px */
@media (max-width:1200px) {

  /* your conditional / responsive CSS inside this condition */

  .main_logo { width: 75%; }
  p {
	  width: 30%;
  }
  body { font-size: 100%; }
}


@media (max-width:1200px) {

  /* your conditional / responsive CSS inside this condition */

  .main_logo { width: 75%; 
  }
  
  p {
	  width: 100%;
	  font-size: 120%;
  }
  
  .secure_image {width: 100%; }
    
}



.line-1{
    /* position: relative; */
    /* top: 50%;   */
    /* width: 24em; */
    /* margin: 0 auto; */
    border-right: 2px solid rgba(255,255,255,.75);
    /* font-size: 180%; */
    /* text-align: center; */
    white-space: nowrap;
    overflow: hidden;
    transform: translateY(-50%);    
}

.line-2{
	border-right: 2px solid rgba(255,255,255,.75);	
	white-space: nowrap;
    overflow: hidden;
    transform: translateY(-50%);  
}

/* Animation */
.anim-typewriter{
  animation: typewriter 4s steps(44) 1s 1 normal both,
             blinkTextCursor 400ms steps(44) infinite normal;
}


/* This is decalared on the page itself. Width is stopping point of cursor. */
@keyframes typewriter{
  from{width: 0;}
  to{width: 221em;}
}
@keyframes blinkTextCursor{
  from{border-right-color: #ffcc00;}
  to{border-right-color: transparent;}
}






