html, body, div {
    font-family: 'Cascadia Code', sans-serif;
    height: 100%;
}

@font-face {
    font-family: 'Cascadia Code';
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: local('Cascadia Code'), url(/fonts/CascadiaCode/CascadiaCode.woff2) format('woff2');
}

.btn:hover:active {
    box-shadow: 0 0 0 0rem rgba(var(--bs-btn-focus-shadow-rgb), .5);
}

.content {
    padding-top: 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
}

.typewriter-container {
    font-size: 3rem;
    font-weight: bold;
    font-family: 'Cascadia Code', monospace;
    height: 3rem;
    display: flex;
    align-items: center;
}

.typewriter-text {
    white-space: nowrap;
}

.typewriter-cursor {
    color: #4a6baf;
    font-weight: normal;
}

    .typewriter-cursor.solid {
        opacity: 1;
    }

    .typewriter-cursor.blinking {
        animation: blink 0.7s step-end infinite;
    }

@keyframes blink {
    from, to {
        opacity: 1;
    }

    50% {
        opacity: 0;
    }
}

