@import url('https://fonts.googleapis.com/css2?family=Roboto+Mono:ital,wght@0,100..700;1,100..700&display=swap');
*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

body{
    min-height: 100dvh;         /* dynamischer Viewport für Mobile */
  width: 100%; 
    font-family: "Roboto Mono", monospace;
letter-spacing: 20px;
    font-size: clamp(14px, 4vmin, 28px);    font-weight: 900;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: lightgrey;
}

.alwaysOn{
    color: red;
    
}

.clock1{
    color:lightgray;
    background-color: red;
}

@media (max-width: 400px) {
    body {
        font-size: clamp(12px, 5vmin, 22px);
        letter-spacing: clamp(1px, 0.7vmin, 8px);
    }
}