* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: #000000;
    color: #ffffff;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    width: 100vw;
    margin: 0;
    padding: 0;
    overflow: hidden;
    position: relative;
}

#matrixCanvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    max-width: 100vw;
    max-height: 100vh;
    z-index: 0;
    display: block;
    opacity: 0.5;
}

.container {
    text-align: center;
    position: relative;
    z-index: 1;
}

.label {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 300;
    letter-spacing: 0.5px;
}

.ip-address {
    font-size: 4rem;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 1.5rem;
}

.location {
    font-size: 1.2rem;
    font-weight: 300;
    opacity: 0.9;
}

@media (max-width: 768px) {
    .label {
        font-size: 1.2rem;
    }

    .ip-address {
        font-size: 2.5rem;
    }

    .location {
        font-size: 1rem;
    }
}