@import url('https://fonts.googleapis.com/css2?family=Anonymous+Pro:wght@400;700&display=swap');

html, body {
    height: 100%;
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #f0f0f0;
}

#ip-container {
    background-color: transparent;
    text-align: center;
    padding: 20px;
    border-radius: 8px;
}

#ip-address {
    font-size: 6vw;
    font-weight: 400;
    color: #023047;
    cursor: pointer;
    font-family: 'Anonymous Pro', monospace;
}

@media (max-width: 600px) {
    #ip-address {
        font-size: 5vw;
    }
}

@media (max-width: 400px) {
    #ip-address {
        font-size: 8vw;
    }
}
