body, html {
    margin: 0;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: 'Comic Sans MS', cursive, sans-serif; /* Example of a cute, colorful font */
}

.screen {
    width: 500px;
    height: 500px;
    background-color: pink;
    text-align: center;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 0 10px rgba(0,0,0,0.5);
}

h1, h2 {
    color: #ff00ff; /* Example of colorful text */
}

button {
    padding: 10px 20px;
    font-size: 16px;
    cursor: pointer;
    margin-top: 20px;
    border-radius: 5px;
    border: none;
    background-color: #ff69b4; /* Light pink button */
    color: white;
}
