@import url('https://fonts.googleapis.com/css?family=Montserrat&display=swap');
@import url('https://fonts.googleapis.com/css?family=Courier+Prime&disply=swap');

*{
    overflow: hidden;
    /* margin: 0;
    padding: 0; */
    font-family: "Courier Prime";
    font-size: 10px;
}

.typewrite{
    /*height: 25px;*/
    text-align: center;
    font-family: "Courier Prime";
    font-size: 20px;
    display: inline-block;
}

.typewrite:after {
    content: '';
    width: 2px;
    height: 20px;
    position: fixed;
    background: white;
    opacity: 0;
    display: inline-block;
    animation: cursorblink 400ms linear infinite alternate;
}

@keyframes cursorblink {
    50% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

/*
    color: #d0d0d0;

    text-align: center;
    
    border-right: 0.08em solid #fff;
    animation: blinkTextCursor 500ms infinite normal;

    margin: 0;
    padding: 0;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
}
*/
.links {
    font-size: 12px;
    color: white;
    font-family: "Courier Prime";
    /*text-decoration: underline;*/
  }
  
.linkslist {
  display: block;
  font-size: 17px;
  color: white;
  text-decoration: underline
}

.link {
    text-decoration: underline;
    color: white;
}

.contact-title {
    font-size: 25px;
    font-weight: 10px;
}

.contact {
    font-size: 20px;
    color: white;
}

@keyframes blinkTextCursor{
    from{border-right-color: rgba(255,255,255,.75);}
    to{border-right-color: transparent;}
}