body {
    background-color: black;
    display: flex ;
    justify-content: center;
    padding: 20px;
    height: 100vh;
    counter-reset: paragraph-counter;
    
}


p {
    font-size: clamp(1rem, 2.436vw + 0.452rem, 3.375rem);
    color: white;
    line-height: 150%;
   
   
}


.intro {
    font-family: "Titillium Web", serif;
    font-weight: 700;
    font-style: normal;
    margin-bottom: 80px;
    text-align: left;
    text-transform: uppercase;
    font-size: clamp(1.125rem, 2.692vw + 0.519rem, 3.75rem);
   
}

.sonnet1 {
    font-family: "Martel", serif;
    font-weight: 200;
    font-style: normal;
    counter-increment: paragraph-counter;
}

.sonnet2 {
    font-family: "Yantramanav", serif;
    font-weight: 300;
    font-style: normal;
}
.sonnet3 {
     font-family: "Yantramanav", serif;
    font-weight: 300;
    font-style: normal;
}
.sonnet4 {
    font-family: "Yantramanav", serif;
    font-weight: 300;
    font-style: normal;
    margin-bottom: 100px;
}

.color_text{
    color: yellow;
}

.legende{
    font-weight: bold;
    color: #ffffff98;
    padding: 5px;
    margin: 0;
    text-transform: none;
    
}
.sonnet1::before {
    content: counter(paragraph-counter) ". "; 
    font-weight: bold;
    color: yellow; 
  }

