body
{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100vw;
    height: 100vh;
    padding: 0;
    margin: 0;
    font-family: "Open Sans", sans-serif;
    color: white;
    background-color: #151518;
}
h1
{
    margin: 0;
    padding: 0;
    font-family: "Open Sans", sans-serif;
    font-size: clamp(3rem, 8vw, 8rem);
    font-weight: 900;
}
.text-center
{
    text-align: center;
}
.console {
    width: calc(100% - 2rem);
    font-size: clamp(1rem, 4vw, 1.5rem);
    line-height: clamp(1.5rem, 4vw, 2rem);
    white-space: normal;
    word-break: break-word;
    padding: 1rem;
}
#text
{
}
.cursor {
    width: clamp(1.5rem, 4vw, 2rem);
    height: clamp(1.5rem, 4vw, 2rem);
    display: inline-block;
    font-size: clamp(1rem, 4vw, 1.5rem);
    line-height: clamp(1.5rem, 4vw, 2rem);
    text-align: center;
    vertical-align: bottom;
    animation: blink 0.7s steps(1) infinite;
    background-image: url(../images/android-chrome-192x192.png);
    background-position: center;
    background-size: cover;
}
.pt-5
{
    padding-top: 5rem;
}
@keyframes blink {
    0%, 50% {
        opacity: 1;
    }
    51%, 100% {
        opacity: 0;
    }
}