body {
  margin: 0;
  background: #FAF9EE;
  display: flex;
  flex-direction: column;
  align-items: center; /* centers content horizontally */
  justify-content: center; /* centers content vertically */
  min-height: 100vh; /* makes the body take full height of the screen */
  margin: 0;
  padding: 20px;
}

.wrapper {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  overflow: hidden;
  text-align: center;
}

.kobe, .kobe1 {
  margin: 10px;
  font-family: cursive;
  font-size: 2rem;
}
.kobe1{
	color: #A2AF9B;
	 -webkit-text-stroke: 1px black;
}
.kobe{
	color: #DCCFC0;
	-webkit-text-stroke: 1px purple;
}
.mail {
  width: 120px;
  margin: 20px 0;
}

.btn-group {
  position: relative;
  width: 100%;
  height: 200px;
  margin-top: 20px;
}

/* YES BUTTON */
.yes-btn {
  padding: 12px 24px;
  font-size: 18px;
  border: none;
  border-radius: 30px;
  background: #2196F3;
  color: white;
  font-weight: bold;
  cursor: pointer;
  z-index: 1;
}

.yes-btn a {
  text-decoration: none;
  color: white;
}

/* NO BUTTON */
.no-btn {
  position: absolute;
  top: 0;
  left: 0;
  padding: 12px 24px;
  font-size: 18px;
  border: none;
  border-radius: 30px;
  background: #f44336;
  color: white;
  font-weight: bold;
  cursor: pointer;
  z-index: 2;
  transition: top 0.2s, left 0.2s;
}

/* SHAKE ANIMATION */
@keyframes shake {
  0% { transform: translate(0); }
  25% { transform: translate(-5px, 5px); }
  50% { transform: translate(5px, -5px); }
  75% { transform: translate(-5px, -5px); }
  100% { transform: translate(0); }
}

.shake {
  animation: shake 0.3s ease;
}
