html, body {
    background-color: #121212; /* deep dark gray */
    color: #ffb3ba;           /* pastel red */
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    margin: 0;
    padding: 0;
    line-height: 1.6;
    height: 100%;
}

.container {
    display: flex;
    flex-direction: column;
    height: 100vh;
}

.label {
    flex: 2;
    display: flex;
    justify-content: center;
    align-items: center;
}

.timer {
    position: absolute;
    top: 1rem;
    left: 1rem;
    font-size: 1.2rem;
    color: #ffb3ba;
    font-family: monospace;
    background: rgba(255, 255, 255, 0.05);
    padding: 0.3rem 0.6rem;
    border-radius: 6px;
    font-size: 400%;
}

.label h1 {
    font-size: clamp(2rem, 10vw, 20rem);
    text-align: center;
}

.button-area {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.button-area button {
    width: 90%;
    height: 80%;
    font-size: 2rem;
    background-color: #1e1e1e;
    color: #ffb3ba;
    border: 2px solid #ffb3ba66;
    border-radius: 12px;
    cursor: pointer;
}

.button-area button:hover {
    background-color: #2a2a2a;
    transform: scale(1.02);
}

ul {
    list-style-type: none;
    font-size: 200%;
    padding: 0;
    margin: 0;
    text-align: center;
}
