html, body {
    margin: 0px;
    padding: 0px;
    margin: 0px;
    width: 100%;
    height: 100%;
    font-family: 'Cousine', monospace;
}

div.content {
    margin: auto;
    text-align: center;
    font-size: 1em;
    position: relative;
    top: 50%;
    transform: translateY(-50%);
}

.typed-cursor {
    opacity: 1;
    animation: blink .8s infinite;
}

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