body {
    margin: 0;
    background: #000;
    color: #d4d4d4;
    font-family: "Courier New", monospace;
    /* Changed to auto so you can scroll if the email is tall */
    overflow-y: auto; 
}

/* VOID SPACE */
.void {
    width: 100vw;
    /* Use min-height so it expands if the email is long */
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px; /* Buffer for mobile screens */
    box-sizing: border-box;
}

/* EMAIL BOX */
.email {
    /* Made width responsive and smaller */
    width: 100%;
    max-width: 400px; 
    /* Reduced padding */
    padding: 20px;

    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(255,255,255,0.08);

    backdrop-filter: blur(4px);
    box-sizing: border-box;

    animation: drift 12s ease-in-out infinite;
}

/* HEADER */
.header {
    font-size: 11px; /* Slightly smaller */
    opacity: 0.4;
    margin-bottom: 20px; /* Reduced margin */
}

/* BODY TEXT */
.body p {
    margin: 15px 0; /* Reduced margin from 30px */
    font-size: 13px; /* Slightly tighter text */
    opacity: 0.6;
    transition: 0.5s;
}

/* HOVER = awareness */
.body p:hover {
    opacity: 1;
}

/* IMPORTANT LINES */
.break {
    opacity: 1;
    color: #ffffff;
}

/* FINAL LINE */
.end {
    text-align: center;
    font-size: 14px; /* Slightly smaller */
    opacity: 1;
    margin-top: 20px;
}

/* FADE OUT */
.fade {
    opacity: 0.2;
    filter: blur(1px);
}

/* FLOATING DRIFT */
@keyframes drift {
    0% { transform: translateY(0px); }
    50% { transform: translateY(8px); } /* Reduced drift distance */
    100% { transform: translateY(0px); }
}