body,
html {
    height: 100%;
    width: 100%;
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: black;
    color: white;
    font-family: 'Courier New', Courier, monospace;
}

.container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.typewriter {
    font-size: 24px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    white-space: nowrap;
    /* Prevent wrapping to the next line */
}

.cursor:after {
    content: "";
    border-right: 2px solid white;
}

.cursor.blink:after {
    animation: blink 1s step-end infinite;
}

@keyframes blink {
    50% {
        border-color: transparent;
    }
}

.name-form {
    transition: opacity 2s ease-in;
    position: absolute;
    top: 60%;
    left: 50%;
    transform: translateX(-50%);
    opacity: 0;
}

.name-form input{
    margin-bottom: 25px;
}
.name-form input,
.name-form button {
    border: none;
    outline: none;
    padding: 10px;
    background: transparent;
    color: white;
}

.name-form input {
    border-bottom: 1px solid white;
}

.name-form button {
    border: 1px solid white;
    cursor: pointer;
}

.reminder {
    color: #888;
    opacity: 0;
    transition: opacity 2s ease-in;
    position: absolute;
    top: 80%;
    left: 50%;
    transform: translateX(-50%);
}

#countdown {
    font-size: 20px;
    color: white;
    margin-top: 120px;
    white-space: nowrap;
    /* Prevent wrapping to the next line */
}