body{
  margin: 0;
  padding: 0;
  font-family: "Montserrat", sans-serif;
  min-height: 100vh;
  display: flex;    
  flex-direction: column; 
}

.content {
  flex: 1; /* Pushes the footer to the bottom */
}

.backgroundimage{
  background-image: url('./images/bg.png'); 
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  min-height: 100vh;
}

.text{
  font-size: 18px;
  color: rgb(31, 27, 23);
  text-align: justify;
}


