html, body {
    height: 100%;
    font-family: 'Roboto', sans-serif;
    scroll-behavior: smooth;
  }
  body {
    margin: 0;
    overflow-x: hidden;
  }  


  .background-image::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;  
    height: 100%; 
    background-image: url(../img/city.png);
    filter: opacity(0.15);
    z-index: -1;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}
  
  #canvas {
    width: 100%;
    height: 100%;
    z-index: 9999;
    position: absolute;
  }

  

  .text{
    position: absolute;
    top: 20%; 
    width: 100%;
    text-align: center;
  }

  .text h1{
    font-weight: 700;
    text-transform: uppercase;
    font-size: 100px;
    line-height: 60px;
  }

  .second_text{
    font-weight: 100;
    font-size: 55px;
  }


.one-Section{
  width: 100%;
  height: 100%;
}

.second-Section{ 
  width: 100%;
  height: 650px;
}

@media (max-width: 768px){
  .text h1{
    font-size: 40px!important;
    line-height: 30px;
    margin-top: 15%;
  }
  .second_text{
    font-size: 30px!important;
  }
}