/*:root {
    --bg: #0b1220;
}*/

* {
    box-sizing: border-box;
    background: #0b1220;
    color: #fcfcfe;
}

html, body {
    height: 100%;
}

body {
    margin: 0;
    display: grid;
    place-items: center;
    /*background: radial-gradient(800px 800px at 10% 10%, rgba(124, 92, 254, 0.06), transparent 6%), var(--bg);*/
    background: radial-gradient(800px 400px at 10% 10%, rgba(124, 92, 254, 0.06), transparent 6%), #0b1220;
    color: #fcfcfe;
    font-family: sans-serif;
    font-size: large;
    font-weight: bold;
    padding: 30px;
    text-align: center;
}

button {
    width: min(80px);
    color: #fcfcfe;
}

h1 {
    margin: 0 0 4px 0;
    font-size: 30px;
    background: transparent;
    color: #fafafe;
}

div {
    background: transparent;
}

.wrap {
    width: min(320px, 96vw);
    height: 60%;
    background: linear-gradient(180deg, rgba(254, 254, 254, 0.02), rgba(254, 254, 254, 0.01));
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(2, 6, 24, 0.8);
}

.timer-buttons {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}