@charset "utf-8";
/* CSS Document */
#container {
    displaY: block;
    text-align: center;
}
#text {
    display: inline-block;
    vertical-align: middle;
    color: white;
    text-shadow: 2px 2px 4px #000000;
    letter-spacing: 2px;
    font-family: 'Cutive', serif;
    font-size: 7vw;
}
#cursor {
    display: inline-block;
    vertical-align: middle;
    width: 20px;
    height: 100px;
    background-color: white;
    animation: blink .75s step-end infinite;
}
 @keyframes blink {
 from, to {
 background-color: transparent
}
 50% {
 background-color: white;
}
}
