@font-face {
  font-family: "Helvetica";
  src: url("font/Helvetica.ttf") format("woff2"); /* Modern browsers */
  /* Older browsers */
  font-weight: normal;
  font-style: normal;
}

body {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  font-family: Helvetica;
}

.homeContainer {
  width: 100%;
  height: 100vh;
  background-image: url("/images/desktopbanner.png");
  background-repeat: no-repeat;
  background-size: cover;
  display: flex;
  justify-items: center;
  align-items: center;
  position: relative;
}
.homeContainer h1 {
  font-size: 78px;
  margin: 0;
  font-weight: 700;
  text-transform: uppercase;
}
.homeContainer h4 {
  font-size: 38px;
  margin: 34px 0px -9px 0px;
  font-weight: 700;
  text-transform: uppercase;
}
.homeContainer .content {
  padding: 0 200px;
  color: #fff;
  text-transform: uppercase;
}

.homeContainer .label {
  font-size: 70px;
  font-weight: 700;
  background: #000;
  margin: 0 0 45px 0;
}

.homeContainer .coloredLine {
  background: #d7068f;
  color: #fff;
  font-family: Helvetica;
  font-size: 53px;
  margin: 0;
  font-style: normal;
  font-weight: 700;
}

.homeContainer .copyright {
  position: absolute;
  left: 1%;
  bottom: 0%;
  color: #fff;
  font-size: 20px;
}

@media (max-width: 1024px) {
  .homeContainer h1 {
    font-size: 64px;
  }

  .homeContainer h4 {
    font-size: 26px;
    margin: 34px 0px -6px 0px;
  }

  .homeContainer .label {
    font-size: 48px;
  }

  .homeContainer .coloredLine {
    font-size: 38px;
  }

  .homeContainer .content {
    padding: 0 100px;
  }

  .homeContainer .copyright {
    font-size: 16px;
  }
}

@media (max-width: 768px) {
  .homeContainer {
    background-image: url("/images/mobilebanner.png");
    background-size: cover;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
  }

  .homeContainer .content {
    padding: 0 14px;
    padding-bottom: 100px;
  }
  .homeContainer h1 {
    font-size: 26px;
    margin-bottom: 5px;
  }
  .homeContainer h4 {
    font-size: 16px;
    margin: 12px 0px -2px 0px;
  }
  .homeContainer .label {
    font-size: 32px;
    margin: 0 0 12px 0;
  }
  .content {
    padding: 0 20px;
    color: #fff;
  }
  .homeContainer .coloredLine {
    font-size: 28px;
  }

  .homeContainer .copyright {
    font-size: 10px;
  }
}
