@import url("https://cdnjs.cloudflare.com/ajax/libs/normalize/8.0.1/normalize.min.css");
@import url("https://cdnjs.cloudflare.com/ajax/libs/bootstrap/4.6.2/css/bootstrap-grid.min.css");

body {
    background-color: #000;
    color: #fff;
    display: flex;
    flex-direction: column;
    font-family: "Fira Sans", sans-serif;
    min-height: 100vh;
}

a {
    color: inherit;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

.site-header {
    border-bottom: 1px solid #2a2a2a;
    height: 64px;
    line-height: 64px;
    margin-bottom: 64px;
}

.site-brand h1 {
    margin: 0;
}

main {
    flex: 1;
}

.info-title {
    margin-bottom: 16px;
}

.info-title h2 {
    font-weight: 500;
    letter-spacing: .5px;
    margin: 0;
}

.info-ip,
.info-location {
    background-color: #1A1A1A;
    border: 1px solid #2a2a2a;
    margin-bottom: 32px;
    padding: 16px;
    text-align: center;
}

.info-ip span {
    font-size: 64px;
    letter-spacing: 1px;
}

.info-location {
    font-size: 32px;
    font-weight: 300;
}

.topic {
    margin-top: 48px;
}

.topic-title {
    margin-bottom: 16px;
}

.topic-title h3 {
    font-size: 16px;
    font-weight: 500;
    letter-spacing: .5px;
    margin: 0;
}

.topic-content ul {
    margin: 0;
    padding: 0;
}

.topic-content li {
    list-style: none;
    margin-bottom: 12px;
}

.topic-content li:last-child {
    margin-bottom: 0;
}

.site-footer {
    border-top: 1px solid #2a2a2a;
    height: 64px;
    line-height: 64px;
    margin-top: 64px;
}

.site-footer .container,
.site-header .container {
    display: flex;
    justify-content: space-between;
}

.footer-nav ul,
.header-nav ul {
    margin: 0;
    padding: 0;
}

.footer-nav ul li,
.header-nav ul li {
    display: inline-block;
    margin-right: 16px;
}

.footer-nav ul li:last-child,
.header-nav ul li:last-child {
    margin-right: 0;
}

.page-title h2 {
    font-size: 24px;
    font-weight: 500;
    letter-spacing: .5px;
    margin: 0;
}

.page-content p {
    line-height: 1.6;
}

@media (max-width: 768px) {
    .info-ip span {
        font-size: 32px;
    }
    
    .info-location span {
        font-size: 24px;
    }
    
    .site-footer .container {
        flex-direction: column;
    }
    
    .footer-nav {
        font-size: 14px;
    }
}