body {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin: 0;
    padding: 0;
    min-height: 100vh;
    background-color: #f8f8f8;
}

.ip-address {
    color: #333333;
    font-family: sans-serif;
    font-size: 12vw;
    font-weight: 700;
    cursor: pointer;
}

.ip-address:hover {
    color: black;
}

@media (prefers-color-scheme: dark) {
    body {
        background-color: black;
    }

    .ip-address {
        color: #c0c0c0;
    }

    .ip-address:hover {
        color: white;
    }
}
