body.homepage {
    background-image: url("../images/bg-img-new.png");
    height: screen;
    background-size: fill;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    margin-top: 100px;
  }

  h1 {
    font-family: "Oswald";
    color: #E1F4F3;
    text-align: center;
    font-size: 90px;
    top: 50%;
    bottom: 50%;
    transition: 0.2s;
  }

  p {
    font-family: "Poppins";
    color: #E1F4F3;
    text-align: center;
    font-size: 56.25px;
    transition: 0.2s;
    animation-name: textentrance;
  }

  .small{
    font-family: "Poppins";
    color: #E1F4F3;
    text-align: center;
    font-size: 20px;
    transition: 0.2s;
  }

  @media screen and (max-width: 660px){
    h1{
      font-size: 50px;
    }
    p{
      font-size: 31.25px;
    }
    p .small{
      font-size: 19,5px;
    }
  }