body {
    font-family: Arial, Helvetica, sans-serif;
    margin: 0;
    height: 100vh;
  }

  .container{
    position: relative;
  }

  .base{
    position: absolute;
    top: 130px;
    width: 100vw;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }

  .title{
    font-size: 36px;
    font-weight: bold;
    color: rgb(0, 223, 117);
  }

  .sentence{
    width: 90%;
    font-size: 20px;
  }

  .footer{
    position: absolute;
    top: 100vh;

  }

  @media screen and (max-width: 650px) {
    .title{
      font-size: 20px;
    }
    .sentence{
      font-size: 14px;
    }
    .footer{
      top: 130vh;
  
    }
  }