@font-face {
    font-family: "headline";
    src: url(../fonts/headline.ttf) format("truetype");
  }
  @font-face {
    font-family: "text";
    src: url(../fonts/text.ttf) format("truetype");
  }

  html {
    height: 100%;
  }
  
  body {
      height: 100%;
      margin: 0;
      background-repeat: no-repeat;
      background-attachment: fixed;
      font-family: Helvetica, Arial, sans-serif;
      background-image: linear-gradient( white,#cc7337);
  }

  div {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: row;
    margin-bottom: 30px;
  }

  h1 {
    font-size: 60px;
    margin: auto 0;
    color: black;
    font-family: "headline";
  }

  .text_content {
    width: 60%; 
    flex-direction: column; 
    margin: auto;
  }

  .content {
    flex-direction: row;
  }

  .buttons {
    justify-content: space-around;
  }
  @media screen and (max-width: 800px) {
    .phone_image {
      display: none;
    }
    .buttons {
      flex-direction: column;
    }
    .text_content {
      width: 95%;
    }
  }

  @media screen and (max-width: 1100px) {
    .content {
      flex-direction: column;
    }
    .text_content {
      width: 80%;
    }
}

