.blinking-cursor {
    color: lightgray;
    font-size: 80%;
    -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;
      -webkit-text-stroke: 0px black;
    }
    50% {
      color: lightgray;
      -webkit-text-stroke: 1px black;
    }
}
  
@-moz-keyframes blink {
    from, to {
      color: transparent;
      -webkit-text-stroke: 0px black;
    }
    50% {
      color: lightgray;
      -webkit-text-stroke: 1px black;
    }
}
  
@-webkit-keyframes "blink" {
    from, to {
      color: transparent;
      -webkit-text-stroke: 0px black;
    }
    50% {
      color: lightgray;
      -webkit-text-stroke: 1px black;
    }
}
  
@-ms-keyframes "blink" {
    from, to {
      color: transparent;
      -webkit-text-stroke: 0px black;
    }
    50% {
      color: lightgray;
      -webkit-text-stroke: 1px black;
    }
}
  
@-o-keyframes "blink" {
    from, to {
      color: transparent;
      -webkit-text-stroke: 0px black;
    }
    50% {
      color: lightgray;
      -webkit-text-stroke: 1px black;
    }
}

body {
    background-color: black;
    color: white;
    font-family: Helvetica Neue, Helvetica;
    margin: 0px;
}

body a {
    color: deepskyblue;
    text-decoration: none;
    -webkit-text-stroke: 0px black; 
}

body a:hover {
    color: darkcyan; 
}

body .content {
    margin: 15px 0 0 auto;
    padding-left: 10%;
    padding-right: 10%; 
}

body .content h2 {
    color: lightgray;
    display: inline;
    font-family: 'Courier New', Courier, monospace;
    font-size: 5rem;
    margin-top: 5%;
    -webkit-text-stroke: 1px black;
}
      
body .content p {
    font-size: 1.5rem;
    margin: 5px 0 10px 5px;
    padding: 0px;
    -webkit-text-stroke: .65px black;
}

body .container {
    align-items: center;
    display: flex;
    justify-content: center;
    margin-top: 10px;
}
  
body .container img {
    max-width: 100%
}
  
body .container .image {
    flex-basis: 40%
}

body .container .text {
    padding-right: 15px;
}