/* Style général */
body {
    background-color: black;
    color: #00FF00;
    font-family: "Source Code Pro", "Courier New", Courier, monospace;
    font-size: 16px;
    padding: 20px;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    flex-direction: column;
}

/* Style du terminal */
.terminal {
    background-color: #000;
    border: 2px solid #00FF00;
    padding: 20px;
    width: 90%;
    max-width: 800px;
    box-shadow: 0 0 15px #00FF00;
    border-radius: 5px;
    overflow: hidden;
}

/* Animation de ligne */
.line {
    margin: 5px 0;
    opacity: 0; /* Les lignes sont masquées au départ */
    white-space: pre-wrap;
    transition: opacity 0.3s ease-in-out; /* Transition fluide pour l'apparition */
}

/* Style du prompt */
.prompt {
    color: #00FF00;
}

/* Lien LinkedIn en dehors du terminal */
.linkedInContainer {
    margin-top: 20px;
    text-align: center;
    color: #00FF00;
    width: 100%;
    display: flex;
    justify-content: center;
}

/* Adaptation pour mobile */
@media (max-width: 768px) {
    body {
        font-size: 14px;
        padding: 10px;
    }

    .terminal {
        width: 100%;
        padding: 15px;
    }
}
