* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Helvetica", sans-serif;
}

@font-face {
  font-family: "Helvetica-Bold";
  src: url("./fonts/Helvetica-Bold.ttf") format("ttf");
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: "Helvetica-BoldOblique";
  src: url("./fonts/Helvetica-BoldOblique.ttf") format("ttf");
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: "helvetica-compressed-5871d14b6903a";
  src: url("./fonts/helvetica-compressed-5871d14b6903a.otf") format("otf");
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: "helvetica-light-587ebe5a59211";
  src: url("./fonts/helvetica-light-587ebe5a59211.ttf") format("ttf");
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: "Helvetica-Oblique";
  src: url("./fonts/Helvetica-Oblique.ttf") format("ttf");
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: "helvetica-rounded-bold-5871d05ead8de";
  src: url("./fonts/helvetica-rounded-bold-5871d05ead8de.otf") format("otf");
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: "Helvetica";
  src: url("./fonts/Helvetica.ttf") format("ttf");
  font-weight: normal;
  font-style: normal;
}

body {
  background-image: url("./Home.png");
  background-size: cover;
  background-position: center;
  height: 100vh;
  width: 100%;
}

header{
    padding: 40px;
}

main {
  padding: 40px;
  width: 870px;
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: center;
  min-height: calc(100vh - 250px);
}

h1 {
  font-style: normal;
  font-weight: 400;
  font-size: 90px;
  line-height: 117.2%;
  background: linear-gradient(
    87.05deg,
    #dc6b30 17.99%,
    #e4864f 49.64%,
    #ffbe82 72.7%,
    #e49031 93.02%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
  margin-bottom: 20px;
}

p {
  font-style: normal;
  font-weight: 400;
  font-size: 36px;
  line-height: 158.7%;
  color: #eae9e9;
  margin-bottom: 30px;
}

a {
  background: linear-gradient(
    87.05deg,
    #dc6b30 17.99%,
    #e4864f 49.64%,
    #ffbe82 72.7%,
    #e49031 93.02%
  );
  box-shadow: 0px 3px 49px -3px rgba(226, 128, 72, 0.76),
    inset 0px -4px 0px #8f4119;
  border-radius: 20px;
  font-style: normal;
  font-weight: 400;
  font-size: 28px;
  line-height: 158.7%;
  text-align: center;
  color: #000000;
  border: 0.5px solid rgba(255, 255, 255, 0.38);
  text-decoration: none;
    padding: 20px 60px;
}

a:active {
  background:linear-gradient(
    87.05deg,
    #dc6b30 17.99%,
    #e4864f 49.64%,
    #ffbe82 72.7%,
    #e49031 93.02%
  );
  box-shadow: none;
}


@media (max-width: 991px) {
  main {
    width: 100%;
    padding: 20px;
  }

  h1 {
    font-size: 50px;
    margin-bottom: 10px;
  }

  p {
    font-size: 24px;
    margin-bottom: 20px;
  }

  a {
    font-size: 20px;
    padding: 15px 40px;
  }
}

@media (max-width: 768px) {

  h1 {
    font-size: 30px;
    margin-bottom: 10px;
  }

  p {
    font-size: 18px;
    margin-bottom: 20px;
  }

  a {
    font-size: 14px;
    padding: 15px 40px;
    border-radius: 6px;
  }
}