body, html {
    height: 100%
  }
  
  *{
    margin: 0;
    padding: 0;
    font-family: 'Poppins', sans-serif;
    box-sizing: border-box
  }
  .main {
  background-image: url('../images/background.png');
  height: 100%;
  background-position: center;
  background-size: contain;
  position: relative;
  color: rgb(0, 0, 0);
  font-family: "Courier New", Courier, monospace;
  font-size: 25px;
  } 

  .middle {
    position: absolute;
    top: 85%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
  }