﻿body {
    margin: 0;
    font-family: 'Segoe UI', sans-serif;
    background-color: #f4f4f4;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    color: #333;
}

.ip-container {
    font-size: 2.5rem;
    font-weight: bold;
    text-align: center;
    background-color: #fff;
    padding: 40px 60px;
    border-radius: 12px;
    box-shadow: 0 0 20px rgba(0,0,0,0.1);
}

/* Modal styles */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.6);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 999;
}

.modal-content {
    background-color: #fff;
    padding: 30px;
    max-width: 800px;
    max-height: 90vh;
    overflow-y: auto;
    border-radius: 10px;
    box-shadow: 0 0 15px rgba(0,0,0,0.3);
}

    .modal-content h2 {
        margin-top: 0;
        font-size: 1.5rem;
    }

    .modal-content p {
        margin: 10px 0;
        line-height: 1.6;
    }

    .modal-content strong {
        display: block;
        margin-top: 20px;
        font-size: 1.1rem;
    }

.close-btn {
    margin-top: 20px;
    padding: 10px 20px;
    background-color: #0078D4;
    color: white;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-size: 1rem;
}

    .close-btn:hover {
        background-color: #005fa3;
    }

.home {
    display: flex;
    flex-direction: column;
}

    .home > h1 {
        text-align: center;
    }
