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

body {
    font-family: Arial, sans-serif;
    background-image: url('so-white.png');
    background-repeat: repeat;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

h1 {
    font-size: 26px;
    color: #010076;
    margin-bottom: 16px;
    margin-top: 40px;
}

p {
    color: #010076;
    margin-bottom: 16px;
}

a {
    text-decoration: none;
}

.container {
    background-color: transparent;
    border: none;
    border-color: transparent;
    box-shadow: none;
    padding: 20px;
    text-align: center;
    max-width: 400px;
    width: 100%;
    margin: auto;
}

.logo img {
    border-radius: 0%;
    width: 120px;
    height: 120px;
    object-fit: cover;
    margin: auto;
}

.color-dark {
    color: #010076;
}

.color-light {
    color: #5c8dff;
}

.gpg-key-container {
    display: flex;
    align-items: center;
    border: 1px solid #ccc;
    padding: 10px;
    border-radius: 5px;
    background-color: #f9f9f9;
    width: fit-content;
    font-family: Arial, sans-serif;
    font-size: 16px;
    margin: auto;
    margin-top: 40px;
}

.gpg-key {
    margin-right: 10px;
    font-family: "Courier New", Courier, monospace;
    color: #333;
}

.copy-icon {
    cursor: pointer;
    width: 24px;
    height: 24px;
    color: #007bff;
}


        /* Style pour le popup de notification */
        .copy-notification {
            position: fixed;
            top: 20px;
            right: 20px;
            padding: 10px 20px;
            background-color: #4CAF50;
            color: white;
            font-family: Arial, sans-serif;
            font-size: 14px;
            border-radius: 5px;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
            opacity: 0;
            transition: opacity 0.3s ease, transform 0.3s ease;
            transform: translateY(-20px);
            z-index: 1000;
        }

        /* Affichage du popup (visibilité) */
        .copy-notification.show {
            opacity: 1;
            transform: translateY(0);
        }

        .full-fingerprint {
            display: none;
        }