@import url('https://thesevendeadlysinsds.github.io/tototititututytytataTravisScott/fonts/s/arima/v6/css2.css');
body {
    font-family: "Roboto", sans-serif;
    font-weight: 500;
    font-style: normal;
    text-align: center;
    margin-top: 50px;
}
h1 {
    font-size: 2em;
    margin-bottom: 20px;
}
/* Styles pour les divs affichant les IP */
#server-ip, #client-ip {
    font-size: 10em;
    font-weight: bold;
    user-select: none;
    margin-bottom: 20px;
    color: #222;
    /* Assure visibilité */
    display: block;
}
/* Styles inputs */
#server-ip-input, #client-ip-input {
    font-size: 2em;
    padding: 10px;
    width: 300px;
    max-width: 90vw;
    text-align: center;
    margin-bottom: 15px;
    border: 2px solid #333;
    border-radius: 5px;
    user-select: all;
    font-family: "Roboto", sans-serif;
    font-weight: 500;
}
/* Boutons */
#copy-server-ip, #copy-client-ip {
    cursor: pointer;
    font-family: "Roboto", sans-serif;
    font-weight: 500;
    font-style: normal;
    font-size: 1.8em;
    padding: 10px 25px;
    border: none;
    border-radius: 6px;
    background-color: #007BFF;
    color: white;
    transition: background-color 0.3s ease;
    margin-bottom: 40px;
}
#copy-server-ip:hover, #copy-client-ip:hover {
    background-color: #0056b3;
}

/* Responsive - ajustement taille IP */
@media (max-width: 1200px) {
    #server-ip, #client-ip {
        font-size: 6em;
    }
    #server-ip-input, #client-ip-input {
        font-size: 1.6em;
        width: 250px;
    }
}
@media (max-width: 600px) {
    #server-ip, #client-ip {
        font-size: 3.5em;
    }
    #server-ip-input, #client-ip-input {
        font-size: 1.2em;
        width: 200px;
    }
    #copy-server-ip, #copy-client-ip {
        font-size: 1.4em;
        padding: 8px 20px;
    }
}