body,
html {
    background-image: url('/img/bg2.png');
    background-size: 2px;
    overflow: hidden;
    font-family: monospace;
    color: #DfD8bF;
    text-align: center;
    margin: auto;
    max-width: 800px;
}

.vertical-center {
    /* Fallback for vh unit */
    min-height: 100%;
    min-height: 100vh;

    /* Make it a flex container */
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;

    /* Align the bootstrap's container vertically */
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;

    /* In legacy web browsers such as Firefox 9
     we need to specify the width of the flex container */
    width: 100%;

    /* Also 'margin: 0 auto' doesn't have any effect on flex items in such web browsers
     hence the bootstrap's container won't be aligned to the center anymore.

     Therefore, we should use the following declarations to get it centered again */
    -webkit-box-pack: center;
    -moz-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
}

.title {
    text-align: center;
    font-size: 4em;
}

.title-section {
    transition: all 1s ease 0s;
    display: none;
}

.title-previous {
    margin-bottom: 1000px;
    margin-top: -1000px;
}

.title-current {
    display: block;
}

.title-next {
    margin-top: 1000px;
    margin-bottom: -1000px;
}

.hidden {
    opacity: 0;
}

.no-link {
    color: inherit;
    cursor: text;
    text-decoration: none;
}

#title-cursor {
    margin-left: -26px;
    top: -5px;
    position: relative;
}



.fade-in {
    opacity: 0;
    animation: fadeIn 1s ease-in-out forwards;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.fade-out {
    opacity: 1;
    animation: fadeOut 1s ease-in-out forwards;
}

@keyframes fadeOut {
    from {
        opacity: 1;
    }

    to {
        opacity: 0;
    }
}