header {
  width: 100%;
  height: 50px;
  background-color: rgb(227, 37, 33);
}

main {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 60px;
  position: relative;
  padding-top: 54px;
}

a {
  cursor: pointer;
}

.logo {
  width: 220px;
  height: 218px;
}

.abobora {
  height: 70dvh;
  position: absolute;
  left: 3dvw;
  top: 24dvh;
}

.chuck,
.chuckMobile {
  height: 85dvh;
  position: absolute;
  right: 3dvw;
  top: 9dvh;
}

.chuckMobile {
  display: none;
}

.container__buttonLinks,
.container__buttonLinksPrimary {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
}

.buttonLinks img {
  height: 65px;
}

.buttonLinksPrimary img {
  position: relative;
  z-index: 1000;
  height: 90px;
}

@media screen and (max-width: 826px) {
  header {
    height: 30px;
  }

  main {
    padding-top: 16px;
    gap: 30px;
  }

  .logo {
    width: 100px;
    height: 100px;
  }

  .abobora,
  .chuck {
    display: none;
  }

  .chuckMobile {
    display: block;
    height: 70dvh;
    top: 30dvh;
    right: 0dvw;
  }

  .container__buttonLinksPrimary {
    width: 80%;
    flex-direction: column;
    margin-top: 3rem;
  }

  .buttonLinks img {
    height: 50px;
  }

  .buttonLinksPrimary img {
    height: 75px;
  }
}
