/* styles.css */
body {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
    background-color: #f0f0f0;
    font-family: Arial, sans-serif;
}

.container {
    text-align: center;
}

#speedometer {
    width: 100%;
    max-width: 400px;
    height: auto;
    background-color: #fff;
    border-radius: 50%;
}

#digitalDisplay {
    margin-top: 20px;
    font-size: 2em;
    font-weight: bold;
    color: #333;
}

@media (max-width: 600px) {
    #digitalDisplay {
        font-size: 1.5em;
    }
}