body {
    font-family: 'Brush Script MT', cursive; /* Change to a romantic cursive font */
    background-color: #ffdde1;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 80vh;
    background: url('images/bg2.jpg') repeat;
    font-size: 25px;
    color: rgb(108, 59, 170);
}
.hh{
    -webkit-text-stroke: 1px #71004f;
    font-weight:10;

}
.pp{
    -webkit-text-stroke: 1px #71004f;

    font-size: 35px;
    font-style: oblique;
    font-weight: 100;
}

body

.container {
    width: 100%;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    background-color: transparent;
}

.image{
    height: 210px;
    
}

.buttons button {
    background-color: #ff4d79;
    color: #fff;
    padding: 10px 50px;
    border: none;
    border-radius: 10px;
    margin: 0;
    font-size: 26px;
    cursor: pointer;
    position: relative;
    font-family: 'Lobster', cursive; /* Change to a romantic cursive font */

}

.buttons button:hover {
    background-color: #7c1f37;

}

.buttons{
    display: flex;
    justify-content: center;
    flex-direction: row;
    gap: 40px;
}

#no-button{
  position: absolute;
  left: 0;
  top: 0;
}

.no-slot {
  position: relative; /* important: makes the No button absolute relative to this slot */
  display: inline-block;
}


.hidden-message {
    display: none;
    margin-top: 20px;
}

.move {
    animation: moveNoMessage 0.5s linear;
}

@keyframes moveNoMessage {
    0% { transform: translate(0, 0); }
    25% { transform: translate(30px, 30px); }
    50% { transform: translate(-20px, -20px); }
    75% { transform: translate(10px, 10px); }
    100% { transform: translate(0, 0); }
}
