:root {
  --pink: #ff01ea;
}

html, body {
  height: 100%;
  margin: 0;
  background-color: #fadff8;
}

body {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
}

.container {
  border: 3px solid var(--pink);
  background-color: #f3a3ec;
  border-radius: 20px;
  text-align: center;
  padding: 30px 0;
  width: 50%;
  height: 40vh;
  max-width: 600px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
}

.confirmation{
  border-radius: 20px;
  text-align: center;
  padding: 30px 0;
  width: 50%;
  height: 40vh;
  max-width: 600px;
  box-sizing: border-box;
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.confirmation.visible {
  display: flex;
}

.yes-btn {
  border: none;
  border-radius: 18px;
  padding: 6px 30px;
  color: white;
  background-color: var(--pink);
  font-size: 18px;
  cursor: pointer;
  transition: 0.2s ease-in-out;
}

.yes-btn:hover {
  transform: scale(4);
}

.no-btn {
  border: none;
  border-radius: 18px;
  padding: 6px 30px;
  color: white;
  background-color: grey;
  font-size: 18px;
  cursor: pointer;
  transition: 0.2s ease-in-out;
}

.yes-btn.large {
  transform: scale(2);
}

.btn-group{
    display: flex;
    gap: 25px;
}

@media (max-width: 768px) {
  .container{
    width: 90%;
    height: auto;
    min-height: 50vh;
  }

  .yes-btn,
  .no-btn {
    padding: 8px 20px;
    font-size: 16px;
  }

  .btn-group {
    gap: 15px;
  }
}
