@media screen and (min-width: 951px) {
  h1 {
    text-align: center;
    font: normal 700 36px 'Inter', sans-serif;
    color: #FFF616;
  }

  .buttons {
    margin: 3vw 0 10vw 0;
    display: flex;
    justify-content: center;
    gap: 8vw;
  }

  .containerButton {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .hoverInstruction {
    background-image: url('../images/balao.png');
    background-size: 100% 100%;

    position: relative;
    transform: translateY(-200px);

    display: flex;
    flex-direction: column;
    gap: 10px;

    width: 16vw;
    height: 200px;
    padding: 20px 20px 50px 20px;
    box-sizing: border-box;

    font: normal 700 12px 'Inter', sans-serif;
    color: #FFF;
  }

  .hoverInstruction span {
    color: #A4C639;
  }

  .hoverInstruction p {
    margin: 0;
  }

  .textContainer {
    display: flex;
    gap: 5px;
  }

  .containerButton button {
    padding: 0;
    width: 18vw;
    height: 5vw;
    border-radius: 10px;
    border: solid 2px #FFF;
    cursor: pointer;
  }

  button img {
    margin: 0;
    width: 100%;
    height: 100%;
    border-radius: 8px;
  }
}

@media screen and (max-width: 950px) {
  h1 {
    text-align: center;
    font: normal 700 26px 'Inter', sans-serif;
    color: #FFF616;
  }

  .buttons {
    margin: 5vh 0 15vh 0;
    display: flex;
    justify-content: center;
    gap: 2vh;
  }

  .containerButton {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .hoverInstruction {
    background-image: url('../images/balao.png');
    background-size: 100% 100%;

    position: relative;
    transform: translateY(-200px);

    display: flex;
    flex-direction: column;
    gap: 10px;

    width: 40vw;
    min-height: 200px;
    padding: 12px 12px 20px 12px;
    box-sizing: border-box;

    text-align: left;
    font: normal 700 0.6em 'Inter', sans-serif;
    color: #FFF;
  }

  .hoverInstruction span {
    color: #A4C639;
  }

  .hoverInstruction p {
    margin: 0;
  }

  .textContainer {
    display: flex;
    gap: 5px;
  }

  .containerButton button {
    padding: 0;
    width: 40vw;
    height: 12vw;
    border-radius: 10px;
    border: solid 2px #FFF;
  }

  button img {
    margin: 0;
    width: 100%;
    height: 100%;
    border-radius: 8px;
  }
}