body {
    display: flex;
    min-height: 100vh;
    flex-direction: column;
    background-color: #191919;
    color: #c5c8c6;
    font-weight: lighter;
    font-family: Tahoma, sans-serif;
    text-align: center;
}

b {
    font-weight: bold;
}

h1 {
    font-weight: lighter;
}

.ip-container {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: -50px;
}

.ip {
    font-family: "Trebuchet MS", sans-serif;
    color: #008A17;
    font-size: 3em;
    font-weight: bold;
    cursor: pointer;
    transition: color 0.3s ease;
    max-width: 90%;
    overflow-wrap: break-word;
    word-wrap: break-word;
}

.ip:hover {
    color: #0078D4;
}

.warning {
    color: #FCC424;
}

.shield {
    cursor: pointer;
}

.location {
    margin-top: -35px;
    font-weight: lighter;
    font-size: 1.5em;
}

#button-container {
    text-align: center;
}

#geolocate-button {
    background-color: #0078D4;
    color: #fff;
    padding: 15px 25px;
    border: none;
    border-radius: 16px;
    cursor: pointer;
    font-size: 1.2em;
    font-weight: bold;
    transition: 0.3s;
}

#geolocate-button:hover {
    background-color: #005a9e;
    transition: 0.3s;
}

#info-table {
    margin: auto;
    border-collapse: collapse;
}

#info-table th, #info-table td {
    padding: 15px;
    text-align: left;
}

#info-table th {
    font-weight: bold;
    border-bottom: 1px solid rgba(197, 200, 198, 0.5);
    border-top: 1px solid rgba(197, 200, 198, 0.5);
}

#info-table td {
    border-bottom: 1px solid rgba(197, 200, 198, 0.5);
    border-top: 1px solid rgba(197, 200, 198, 0.5);
}

#notification {
    position: fixed;
    bottom: 0;
    right: 0;
    margin: 20px;
    padding: 10px 20px;
    color: #ffffff;
    background-color: #0078D4;
    font-weight: bold;
    display: none;
    border-radius: 16px;
}

.content {
    flex: 1 0 auto;
}

.article {
    padding-left: 10%;
    padding-right: 10%;
}

footer {
    margin-top: 100px;
    flex-shrink: 0;
    background-color: #202020;
    color: white;
    text-align: center;
    padding: 10px;
}

footer a {
    color: white;
    text-decoration: none;
}

a:hover {
    color: #005a9e;
    transition: 0.3s;
}