/* Apply global styles */
body {
    background-color: black;
    margin: 0;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: 'Courier New', Courier, monospace;
}

/* Style for the email text */
.email-text {
    color: rgb(0, 255, 0); /* Green text */
    font-size: 24px;
    letter-spacing: 2px;
}

/* Make the font smaller on mobile devices */
@media (max-width: 768px) {
    .email-text {
        font-size: 18px; /* Reduce font size on smaller screens */
    }
}

@media (max-width: 480px) {
    .email-text {
        font-size: 16px; /* Further reduce on very small screens */
    }
}
