body {
    font-family: 'Share Tech Mono', monospace;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin: 0;
    background-color: #1a1a1a;
    color: #00ff00;
}

img {
    width: 50px;
    height: 50px;
    max-width: max-content;
    object-fit: cover;
}

.container {
    background-color: #2a2a2a;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 255, 0, 0.5);
    text-align: center;
    width: 100%;
    max-width: 700px;
    box-sizing: border-box;
    border: 1px solid #00ff00;
    animation: flicker 1.5s infinite alternate;
    margin: 10vh auto;
}

@keyframes flicker {

    0%,
    100% {
        box-shadow: 0 0 20px rgba(0, 255, 0, 0.5);
    }

    50% {
        box-shadow: 0 0 5px rgba(0, 160, 0, 0.5);
    }
}

h1 {
    color: #00ff00;
    margin-bottom: 30px;
    font-size: 2.5em;
}

h3 {
    font-size: 18px;
    text-align: start;
    margin: 25px 0 5px;
}

.copyBtn {
    padding: 0;
    cursor: pointer;
    border: none;
    background: none;
}

.copyBtn .svg {
    width: 20px;
    height: 20px;
}

.input-section {
    display: flex;
    gap: 10px;
    margin-bottom: 30px;
}

#ipInput {
    flex-grow: 1;
    padding: 12px 15px;
    border: 1px solid #00ff00;
    border-radius: 5px;
    font-size: 1.1em;
    background-color: #3a3a3a;
    color: #00ff00;
    outline: none;
    transition: box-shadow 0.3s ease;
    font-family: 'Share Tech Mono', monospace;
}

#ipInput::placeholder {
    color: #00cc00;
}

#ipInput:focus {
    box-shadow: 0 0 15px rgba(0, 255, 0, 0.7);
}

#checkIpBtn {
    padding: 12px 25px;
    background-color: #00ff00;
    color: #1a1a1a;
    border: none;
    border-radius: 5px;
    font-size: 1.1em;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease, box-shadow 0.3s ease;
    font-family: 'Share Tech Mono', monospace;
    font-weight: bold;
}

#checkIpBtn:hover {
    background-color: #00cc00;
    transform: translateY(-2px);
    box-shadow: 0 0 10px rgba(0, 255, 0, 0.7);
}

.result-section {
    background-color: #2a2a2a;
    padding: 25px;
    border-radius: 8px;
    text-align: left;
    display: flex;
    flex-direction: column;
    justify-content: center;
    border: 1px dashed #00ff00;
}

.result-section--first {
    border-style: solid;
    background-color: #121212;
}

.result-section p {
    margin: 3px 0;
    font-size: 18px;
    color: #38ff38;
}

.result-section b {
    font-weight: 900;
    color: #008700;
}

@media (max-width: 768px) {
    body {}

    .container {
        border: none;
        animation: none;
        box-shadow: none;
        background: none;
        margin-top: 20px;
        padding: 0 15px;
    }

    h1 {
        font-size: 24px;
    }

    h2 {
        font-size: 20px;
    }

    h3 {
        font-size: 16px;
    }

    .copyBtn .svg {
        width: 18px;
        height: 18px;
    }

    .input-section {
        flex-direction: column;
    }

    #checkIpBtn {
        font-size: 15px;
    }

    .result-section p {
        font-size: 15px;
    }
}