#introOverlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(10, 10, 10, 0.8);
  display: flex;
  justify-content: center;
  align-items: center;
}

.action-button {
  font-size: 2.5rem;
  background-color: #222;
  color: #fff;
  padding: 1rem 2rem;
  border: 3px solid #fff;
  border-radius: 10px;
  cursor: pointer;
  box-shadow: 0 0 15px #fff;
  transition: all 0.3s ease;
  display: none;
}

.action-button:hover {
  transform: scale(1.05);
  background-color: #444;
}

#decisionContainer {
  position: absolute;
  bottom: 45%;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 20px;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: 500px;
  padding: 0 10px;
  z-index: 10;
}


.pill-button {
  flex: 1;
  max-width: 120px;
  padding: 1rem 2rem;
  font-size: 1.5rem;
  border: 3px solid #fff;
  border-radius: 25px;
  cursor: pointer;
  font-weight: bold;
  box-shadow: 0 0 15px #fff;
  transition: all 0.3s ease;
  text-align: center;
}

.pill-button.yes {
  background-color: rgba(32,119,235,0.8);
  color: white;
}

.pill-button.no {
  background-color: rgba(187,0,0,0.8);
  color: white;
}

.pill-button:hover {
  transform: scale(1.05);
  filter: brightness(1.1);
}

.legenda {
  position: absolute;
  bottom: 5%;
  left: 50%;
  transform: translateX(-50%);
  padding: 10px 20px;
  background: rgba(0, 0, 0, 0.7);
  color: #fff;
  font-size: 1.5rem;
  border-radius: 10px;
  z-index: 10;
}


@media only screen and (min-width: 374px) and (max-width: 767px){
  .action-button {
    font-size: 1.8rem;
    padding: 0.8rem 1.5rem;
    border-width: 2px;
  }

  #decisionContainer {
    flex-direction: row;
    gap: 10px;
    bottom: 45%;
    padding: 0 5px;
    max-width: 320px;
  }

  .pill-button {
    flex: 1;
    max-width: 60px;
    font-size: 0.7rem;
    padding: 0.6rem 1rem;
    border-width: 2px;
  }

  .legenda, 
  #subtitle {
    font-size: 0.7rem !important;
    padding: 0.6rem 1rem !important;
    bottom: 10% !important;
  }
}
