/* MENU STYLES */
.menu {
    margin-bottom: 40px;
}

.menu .prompt:first-of-type {
    margin-bottom: 20px;
    font-size: 1.1em;
}

.menu .prompt:first-of-type::after {
    content: '';
    border-right: 2px solid #000;
    animation: blink 0.5s step-end infinite;
}

@keyframes blink {
    0%, 50% { border-right: 2px solid #000; }
    51%, 100% { border-right: 2px solid transparent; }
}

.menu .dir {
    margin: 10px 0;
    padding-left: 5px;
}

.menu .spacing {
    margin: 30px 0;
}

.cross {
    text-decoration: line-through;
    opacity: 0.5;
}