* {
    margin: 0;
    padding: 0;
}

body {
    background-color: black;
}

#main {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    font-family: Lucida Console, Lucida Sans Typewriter, monaco,Bitstream Vera Sans Mono, monospace;
}

.secret-container {
    width: min-content;
    user-select: none;
    position: relative;
}

.secret-text {
    display: block;
    color: white;

    font-size: calc(2vw + 16px);
    font-weight: bold;

    overflow: hidden;
    border-right: .15em solid white;
    white-space: nowrap;

    animation: typing 3.5s steps(18, end), blink-caret 1s step-end infinite;
}

.secret-infoText {
    color: #bbbbbb;
    font-size: calc(1vw + 10px);
    font-style: italic;
    position: absolute;

    opacity: 0;
    top: 0px;
    transition: top .3s ease, opacity .3s ease;
}

.secret-container:hover > .secret-infoText {
    opacity: 1;
    top: calc(2vw + 16px);
    transition: top .3s ease, opacity .3s ease;
}

@keyframes typing {
    from { width: 0 }
    to { width: 100% }
}


@keyframes blink-caret {
    from, to { border-color: transparent }
    50% { border-color: white; }
}