article {
    border-radius: 50px;
    /* Rotunjire a colțurilor */
    padding: 50px;
    /* Spațiu interior */
    margin: 100px auto;
    /* Centrare și spațiu exterior */
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
    /* Umbră subtilă */

}


article p {
    font-family: "Lora", serif;
    font-size: 1.5rem;
}


.hover-text {
    position: relative;
    /* Pentru utilizarea efectelor avansate */
    display: block;
    font-size: 1.5rem;
    /* Culoare text principal */
    transition: all 0.3s ease-in-out;
    /* Tranziție lină */
    cursor: pointer;
    margin-bottom: 20px;
    opacity: 1;
}

.hover-text:hover {
    /* Culoare text la hover */
    padding: 5px 10px;
    border-radius: 5px;
    opacity: 1;
}

.hover-text::before {
    content: '';
    display: block;
    width: 50px;
    height: 2px;
    margin-bottom: 10px;
    transition: width 0.3s ease-in-out;
}


body.light-mode .hover-text::before {
    background: #4d0039;
}

body.dark-mode .hover-text::before {
    background: #F2D0A4;
}

.hover-text:hover::before {
    width: 300px;
    /* Extinde linia la hover */
}