@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

 html, body {
  font-family: "Poppins", sans-serif;
  margin: 0;
  padding: 0;
  height: 100%;
  overflow: hidden;
}

.navbar-brand img {
  max-height: 40px;
}

.logo-anchor img{
  transition: transform 0.5s ease;
}

.logo-anchor img:hover{
  transform: scaleX(-1); 
}
#text-container {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 100%;
  padding: 2rem 5vw; /* Aggiunge spazio ai lati */
  z-index: 10;
  background: rgba(255, 255, 255, 0.5); /* Sfondo semi-trasparente per migliorare leggibilità */
  border-radius: 10px;
  backdrop-filter: blur(5px);
  pointer-events: none;
}

#text-container button,
#text-container a {
  pointer-events: auto;
}

.main-title{
  font-size: 8.5vw;
  font-weight: 600;
}

.subtitle{
  font-size: 4vw;
  color: gray;
  font-weight: 300;
  line-height: 98%;
}
.full-height {
  height: calc(100vh - 56px); /* Altezza meno la navbar */
}

#graph-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: -1;
  display: flex;
  justify-content: center;
  align-items: center;
}

#sample-graph {
  width: 100%;
  height: 100%;
  position: relative;
}
