body {
    background-color: black;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
    color: white;
}

#hint {
    font-size: 12px;
    opacity: 0;
    margin-top: 10px;
    animation: showHint 0s forwards;
    animation-delay: 5s; 
}

@keyframes showHint {
    to {
    opacity: 0.7;
    }
}

.enter-box {
    display: flex;
    gap: 10px;
    margin-top: 20px;
}

input {
    padding: 8px;
    border: none;
    outline: none;
}

button {
    padding: 8px 12px;
    cursor: pointer;
}