body {
    font-family: 'Times New Roman', serif;
    background-color: #121212;
    color: #fff;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    overflow: hidden;  /* Prevent scrolling */
}

.screen {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    height: 100%;
    width: 100%;
    max-width: 500px;
    border: 2px solid #00bfff;
    border-radius: 15px;
    box-shadow: 0 0 20px #00bfff, 0 0 30px #00bfff, 0 0 40px #00bfff;
    background-color: #1e1e1e;
    overflow-y: auto;  /* Enable scrolling within the screen */
}

.announcement {
    text-align: center;
    padding: 20px;
    width: 100%;
}

h1 {
    color: #ff00ff; /* Neon pink */
    text-shadow: 0 0 10px #ff0099, 0 0 20px #ff0099, 0 0 30px #ff0099;
    font-size: 1.8em;
}

h2 {
    color: #00ff00; /* Neon green */
    text-shadow: 0 0 10px #00cc00, 0 0 20px #00cc00, 0 0 30px #00cc00;
    font-size: 1.5em;
}

p, ul {
    color: #00bfff; /* Neon blue */
    text-shadow: 0 0 5px #0099cc;
    font-size: 1.2em;
    line-height: 1.6;
}

ul {
    list-style-type: none;
    padding: 0;
}

ul li::before {
    content: "• ";
    color: #ff4500; /* Neon orange */
    text-shadow: 0 0 5px #cc3700;
}

.best-wishes {
    margin-top: 20px;
    font-size: 1.4em;
    color: #ff00ff; /* Neon pink */
    text-shadow: 0 0 10px #ff0099, 0 0 20px #ff0099, 0 0 30px #ff0099;
}

.signature {
    margin-top: 10px;
    font-size: 1.2em;
    color: #ff4500; /* Neon orange */
    text-shadow: 0 0 10px #cc3700, 0 0 20px #cc3700, 0 0 30px #cc3700;
}
