.name {
    font-family: "Lora", serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
    font-size: 8rem;
}

.texte-description {
    font-family: "Lora", serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
}
  
#dynamicText {
    background-color: rgba(20, 20, 20, 0.7); /* Semi-transparent background */
    border-radius: 10px;
    width: 95%;
    max-width: 800px;
    margin: auto;
    font-family: 'Courier New', Courier, monospace; /* Typewriter font */
    white-space: pre-wrap;
    overflow: hidden;
    font-size: 18px;
}

#dynamicText {
    animation: blink 0.7s step-end infinite;
}

.logo-phone {
    display: inline-block;
    animation: tilt 2s infinite ease-in-out;
}

@keyframes tilt {
    0%, 100% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(90deg);
    }
}