html,body{
    font-family: "Prompt", sans-serif;
    overflow-x:hidden;
    background-color: #0e0f13;
}
.text-10xl{
    font-size: 70px;
}
#wavyChart {
    max-width: 100%;
    height: 400px; /* Sau orice înălțime vrei */
  }
.canvas-wavy {
    max-width: 100%; /* Folosește întreaga lățime disponibilă */
    height: 500px; /* Înălțime mai mare pentru spațiere */
    margin: auto;
    display: block;
  }
.background{
    background: url('./grid-pattern.svg');
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
}
.overlay{
    background-color: transparent;
    background-image: linear-gradient(to right, #F7E7CE 0%, #FFFFFF00 95%);
    opacity: 0.09;
}
.bg-golden{
    background-color: #F7E7CE;
}
.canvas-wavy{
    width: 100%;
    height: 800px;
}
.violet-bckgrnd-gradient{
    color:transparent;
    background: -webkit-linear-gradient(50deg, #F7E7CE, #FFFFFF);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
  }
.border-golden{
    border:1px solid #F7E7CE;
}
input::placeholder{
    color:white;
    font-weight: 300;
}
textarea::placeholder{
    color:white;
    font-weight: 300;
}
#itaChart{
    height: 250px;
}
#marketChart{
    height: 250px;
}

@Media(max-width:600px){
    #itaChart{
        height: 600px;
    }
    #marketChart{
        height: 600px;
    }
    .canvas-wavy{
        width: 100%;
        height: 900px;
    }
}