@font-face {
    font-family: "OG";
    src: url("PxPlus_IBM_VGA8.ttf");
  }
  

body { 
    background-color: #0c0c11;
    font-family: "OG";
    text-align: center;
    size: 10px;
}

pre {
    text-shadow: 0 0 50px #7142FF;
    padding-top: 15px; 
    padding-right: 40px;
    color: #1A006B;
    font-size: 15px;

}

a {
    color: #1A006B;
    text-shadow: 0 0 0px #7405ce;
}

#info {
    text-align: center;
    color: #0c0c11;
    margin: auto;
    width: 550px;
}

#sites {
    text-align: center;
    color: #0c0c11;
    margin: auto;
    width: 550px;
}

.hr3 {
    border: 0;
    height: 2px;
    background-image: linear-gradient(to right, transparent, #ea00ff, transparent);
    width: 500px;
  }

.writing {
    text-align: center;
    padding-top: 1px;
    
}

.box {
    outline: 2px solid rgba(0, 0, 0, 0);
    box-shadow: 0 0 0px #0c0c11;
    background-color: rgba(0, 0, 0, 0);
    padding: 10px;
    
}


h1 {
    font-size: 25px;
    color:#ffffff;
    text-shadow: 0 0px #ffffff;
    font-weight: 5;
}

p {
    font-size: 15px;
    color:#ffffff
}

h2 {
    font-weight: 25;
    font-size: 20px;
    color:#ffffff;
}

h3 {
    padding-top: -12px;
    font-size: -12px;
    color:#1A006B;
    text-shadow: 0 0 0px #2819FF;
    font-weight: 1;
}

hr {
    color:#ffffff;
    width: 0%;
    size: 0px;
}

/*5. Animations*/
.blinking-cursor {
    font-weight: 100;
    color: #0c0c11;
    -webkit-animation: 1s blink step-end infinite;
    -moz-animation: 1s blink step-end infinite;
    -ms-animation: 1s blink step-end infinite;
    -o-animation: 1s blink step-end infinite;
    animation: 1s blink step-end infinite;
  }

  @keyframes "blink" {
    from, to {
      color: transparent;
    }
    50% {
      color: white;
    }
  }

  @-moz-keyframes blink {
    from, to {
      color: transparent;
    }
    50% {
      color: white;
    }
  }

  @-webkit-keyframes "blink" {
    from, to {
      color: transparent;
    }
    50% {
      color: white;
    }
  }

  @-ms-keyframes "blink" {
    from, to {
      color: transparent;
    }
    50% {
      color: white;
    }
  }

  @-o-keyframes "blink" {
    from, to {
      color: transparent;
    }
    50% {
      color: white;
    }
  }

