* {
    /* font-family: Tahoma, Geneva, Verdana, sans-serif; */
    font-family: consolas, system-ui, 'Lucida Console', monospace !important;
    font-size: 16px;
    scroll-behavior: smooth;
}


body {
    background-color: black;
}


a, a:visited {
    color: white;
    text-decoration: none;
    font-weight: 200;
    text-decoration: underline;
}


a:hover, a:visited:hover {
    color:gray;
    text-decoration: underline;
}


.rangee {
    height:20vh;
}



.console {
    height:50vh;
}


#competence li {
    list-style-type: circle;
    padding: 5px;
}


#competence .item {
    font-weight: bold;
    text-decoration: underline;
}




@keyframes clignote {  
    50% { opacity: 0; }
}


.message {
    color:white;
    animation: clignote 2s cubic-bezier(0.5,0,0.5,1) infinite;
}


.invite {
    color:white;
    animation: clignote 1s cubic-bezier(0,1,0,1) infinite;
}



.bloc {
    width: 700px;
}


.test1 {
    color: white;
    width: 100%;
    background-color: red;
}

.ligne {
    overflow: hidden; /* Ensures the content is not revealed until the animation */
    /* border-right: .15em solid white; /* The typwriter cursor */
    white-space: nowrap; /* Keeps the content on a single line */
    /* margin: 0 auto; /* Gives that scrolling effect as the typing happens */
    /*letter-spacing: .1em; /* Adjust as needed */
    width: 100%;
    /*font-family: monospace, consolas, system-ui, 'Lucida Console' !important; */
    animation: 
      typing .4s steps(40, end),
      blink-caret 5s step-end infinite;
  }
  
  /* The typing effect */
  @keyframes typing {
    from { width: 0 }
    to { width: 100% }
  }

