body {
    background-color: #ffcb04;
    height: 100vh;
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

.container {
    background-color: #000; /* Black TV frame */
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.7);
    display: flex;
    justify-content: center;
    align-items: center;
    width: 90%;
    max-width: 600px;
    height: auto;
}

.content {
    background-color: white; /* Inner white content */
    padding: 30px;
    border-radius: 10px;
    width: 100%;
    text-align: center;
}