body {
    background-color: #151515;
    color: #eee;
    font-family: Arial, Helvetica, sans-serif;
    margin: 0;
    cursor: default;
}

ul, li {
    list-style-type: none; 
    padding-left: 0;
}

h1 {
    font-size: 36px;
    margin-top: 5px;
}

#ip {
    transition: 1s;
}

#ip:hover {
    scale: 1.2;
    cursor: zoom-in;
}

#map {
    border: none;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
    max-width: 100%;
}

#show-ip-button {
    color: #eee;
    height: 32px;
    width: 140px;
    background-color: #2e2e2e;
    border: none;
    border-radius: 6px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}

hr {
    width: 60em;
    max-width: 100%;
}

@media only screen and (max-width: 480px) {
    #ip {
        font-size: 14px;
    }
}