body {
    background-color: rgb(6,6,6);
    padding: 0;
    margin: 0;
    height: 100vh;
    overflow: hidden;
    color: white;
    font-family: Arial, sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
}

#clickenter {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    width: 100vw;
    position: fixed;
    background: rgba(0, 0, 0, 0.7);
    z-index: 2;
}


#enter-text {
    cursor: pointer;
    font-size: 15px;
    color: white;
    transition: opacity 0.3s ease;
}

#enter-text:hover {
    opacity: 0.7;
}
