body {
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100vh;
    background: linear-gradient(to right, #74ebd5, #acb6e5);
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.container {
    padding: 20px;
    margin: 0 20px; /* Add horizontal margins */
    background: #ffffff;
    border-radius: 15px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.19), 0 6px 6px rgba(0, 0, 0, 0.23);
    text-align: center;
}


.timer {
    font-size: 4vw;
    color: #333;
    padding: 20px;
    margin-bottom: 20px;
    border-radius: 10px;
    background-color: #f8f9fa;
    box-shadow: inset 0 0 10px #bdbdbd;
}

.message {
    font-size: 2vw;
    color: #2c3e50;
    margin-top: 20px;
    display: none; /* Initially hidden */
}


.fading-text {
    position: fixed;
    font-size: 2em;
    color: black;
    -webkit-text-stroke: 1px white; /* White outline */
    z-index: 1000;
    opacity: 1;
    transition: opacity 1s ease, transform 1s ease;
}
