body{
    background-color: #ff97d2;
    height: 100vh;
    margin: 0;
    padding: 0;
    position: relative;
    overflow: hidden;
}

html {
    overflow: hidden;
}

#status {
    position: absolute;
    top: 20px;
    left: 20px;
    color: rgb(202, 252, 255);
    font-size: 20px;
    font-weight: bold;
    opacity: 1;
  transition: opacity 1s ease-out;
}

.slots {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    gap: 2px;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: center;
    width: auto;
}

.slot {
    width: 80px;
    height: 80px;
    border: 3px solid rgb(202, 252, 255);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 50px;
    font-weight: bold;
    background: rgba(255, 255, 255, 0.1);
    flex-shrink: 0;
}

.tile {
  position: absolute;
  width: 80px;
  height: 80px;
  background: #ff97d2;
  border: 3px solid rgb(202, 252, 255);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: grab;
  color: white;
  font-size: 50px;
  font-weight: bold;
  user-select: none;
}

.tile:active {
  cursor: grabbing;
}

#greeting{
  color: rgb(202, 252, 255);
  font-size: 60px;
  position: absolute;
  top: 20%;
  left: 50%;
  transform: translateX(-50%);
  opacity: 0;
  transition: opacity .7s ease-in;
  white-space: nowrap;
}

#finalMessage{
  color: rgb(202, 252, 255);
  font-size: 60px;
  position: absolute;
  top: 30%;
  left: 50%;
  transform: translateX(-50%);
  opacity: 0;
  transition: opacity .7s ease-in;
  white-space: nowrap;
}

#qe{
  color: rgb(202, 252,255);
  font-size: 60px;
  position: absolute;
  top: 63%;
  left: 50%;
  transform: translateX(-50%);
  opacity: 0;
  transition: opacity .5s ease-in;
}

#yes {
  background: transparent;
  border: none;
  padding: 0;
  margin: 0;
  cursor: pointer;
  position: absolute;
  top: 65%;
  left: 30%;
  opacity: 0;
  transition: opacity .5s ease-in;
}

#no {
   background: transparent;
  border: none;
  padding: 0;
  margin: 0;
  cursor: pointer;
  position: absolute;
  top: 65%;
  left: 54%;
  opacity: 0;
  transition: opacity .5s ease-in;
}
#yes img, #no img {
  display: block;
  width: 300px; /* adjust to your size */
  height: auto;
}

#yes:hover img, #no:hover img {
  filter: drop-shadow(0 0 12px rgba(255, 255, 255, 0.8));
  transform: scale(1.03);
  transition: transform 0.2s ease, filter 0.2s ease;
}

#noMessage{
  color: rgb(202, 252,255);
  font-size: 40px;
  position: absolute;
  top: 56%;
  left: 50%;
  transform: translate(-50%, -50%);
  white-space: nowrap;
}

#top{
  position: absolute;
  top: -100%;
  left: 50%;
  transform: translate(-50%, -50%);
  white-space: nowrap;
  width: 100%;
  transition: top 2s ease-in;
}

#right{
  position: absolute;
  top: 51%;
  left: -1%;
  transform: translate(-50%, -50%);
  white-space: nowrap;
  transform: rotate(180deg);
  opacity: 0;
  transition: opacity 3s ease-in;
}

#cherry{
  position: absolute;
  top: 110%;
  left: 150%;
  transform: translate(-50%, -50%);
  white-space: nowrap;
  transition: left 2s ease-in;
}

.newpage{
  display: none
}
 #yay{
  color: rgb(202, 252, 255);
  font-size: 30px;
  position: absolute;
  top: 57%;
  left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
 }

 #kissingKitty{
  position: absolute;
  top: 40%;
  left: 50%;
  transform: translateX(-50%);
 }