body {
    font-family: Arial, sans-serif;
    background-color: #141c2b;
    color: white;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
}

.container {
    background: #1a2333;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.1);
}

h1 {
    font-size: 24px;
    margin-bottom: 20px;
}

.speedometer {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
}

.speed-results {
    display: flex;
    justify-content: space-between;
    width: 100%;
    max-width: 400px;
}

.result {
    background: #222b3d;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    width: 45%;
}

.result p {
    margin: 0;
    font-size: 14px;
    opacity: 0.7;
}

.result span {
    font-size: 32px;
    font-weight: bold;
}

button {
    background-color: #ff5c5c;
    color: white;
    font-size: 18px;
    padding: 10px 20px;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: 0.3s;
}

button:hover {
    background-color: #ff3838;
}

.ip-address {
    text-align: center;
    margin-top: 20px;
    font-size: 18px;
    color: #fff;
    font-weight: bold;
}

