

@import url('https://fonts.googleapis.com/css2?family=Bitcount+Single:wght@100..900&display=swap');

body {
  background-image: url('assets/background.png');
  background-size: cover;
}

.text {
   position: absolute;
  top: 100px;
  left: 530px;
  max-width: 500px;
  }
  
p {
  font-family: "Bitcount Single", system-ui;
  font-style: normal;
  font-size: 24px;
 
}

@media (max-width: 600px) {
  body {
  background-image: url('assets/background-phone-final.png');
  background-size: cover;
}
.text {
  position: absolute;
  top: 200px;
  left: 35px;
  max-width: 500px;
  }
p {
  font-family: "Bitcount Single", system-ui;
  font-style: normal;
  font-size: 16px;
 
}

}