body {
    margin: 0;
    padding: 0;
    font-family: 'Courier New', Courier, monospace;
    color: white;
    background-image: url('cyb3r.jpg');
    background-size: cover;
    background-position: center;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    position: relative;
    overflow: hidden;
}

body::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(2px);
    z-index: 1;
}

.ip-container {
    padding: 20px;
    border-radius: 10px;
    z-index: 2;
    position: relative;
}

#ip-address {
    font-size: 5em;
    font-weight: bold;
    letter-spacing: 2px;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.5), 0 0 20px rgba(255, 255, 255, 0.5);
}

@media (max-width: 768px) {
    #ip-address {
        font-size: 2.5em; /* Уменьшаем шрифт для мобильных устройств */
    }
}
