body, canvas {
    margin: 0;
    overflow: hidden;
    height: 100vh;
    background-color: black;
}

.title {
    position: absolute;
    top: 45%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 3em;
    font-weight: bold;
    color: #0F0;
    font-family: 'Matrix Code', monospace;
    text-align: center;
    z-index: 10;
}

.subtitle {
    position: absolute;
    top: 60%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 1.0em;
    color: #FFF;
    font-family: 'Matrix Code', monospace;
    text-align: center;
    z-index: 10;
}
/* ... existing CSS ... */

.email-section {
    position: absolute;
    bottom: 10%;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
}

/* ... existing CSS ... */

#copyEmailBtn {
    display: inline-block;  /* Make the link block-like */
    padding: 10px 15px;
    background-color: #333333;  /* Dark Gray */
    border: none;
    color: white;
    cursor: pointer;
    border-radius: 5px;
    transition: background-color 0.3s;
    text-decoration: none;  /* Remove the underline */
}

#copyEmailBtn:hover {
    background-color: #1a1a1a;  /* Even Darker Gray for hover effect */
}

#copyMessage {
    margin-top: 10px;
    color: gray;/* Adjust this value for more or less spacing */
}


