@keyframes gradientAnimation {
    0% {
        background-position: 0% 50%;
    }
    100% {
        background-position: 100% 50%;
    }
}

.animated-text {
   /* font-family: 'Georgia', serif;*/
    font-family:  "Apple Chancery", cursive;
    font-size: 48px;
    font-weight: 300; /* Sau poți încerca cu "lighter" */
 
    background: linear-gradient(45deg, #AE8625, #F7EF8A, #D2AC47, #EDC967);
    -webkit-background-clip: text;
    background-clip: text; /* Define the default background-clip property */
    color: transparent;
    text-align: center top;
    margin: 20px 0;
    line-height: 1.2;
    background-size: 200% 200%;
    animation: gradientAnimation 2s infinite alternate;
}

h3 {
   /* font-family: 'Arial', sans-serif;*/
    font-family: 'Georgia', serif;
    font-weight: 300;
    font-size: 20px;
    color: rgb(116, 113, 113);
    line-height: 1.6;
    text-align: center;
    margin: 0 auto;
    max-width: 800px;
}

.animated-h3 {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: right;
    text-align: center;
}


.scroll-container {
    height: 400px; /* Setează înălțimea containerului după preferințele tale */
    overflow-y: scroll; /* Activează scroll-ul pe axa verticală */
    text-align: center;
}

/* Restul stilurilor rămân neschimbate */
body {
    margin: 0;
    font-family: Arial, sans-serif;
    background-size: cover;
    background-position: center;
    background-color: #000000;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    color: #000000;
}
.row {
    margin-bottom: 20px; /* Adds 20 pixels of space below each row */
  }
  
  .background-image {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background-image: url('background.png'); /* Schimbă cu calea către imaginea ta */
    background-size: cover;
    pointer-events: none; /* Aceasta face ca imaginea să nu fie interactivă */
 }