*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html,body{
    height: 100%;
    width: 100%;
}

#square{
    height: 100vh;
    width: 100vw;
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: center;
    justify-content: center;
    background-color: rgba(241, 140, 157, 0.648);

}

#rhn{
    font-size: 5rem;
    color: white;
    opacity: 0.2;
}
#luv{
    background-color: rgb(212, 90, 110);
    color: black;
    font-size: 3rem;
    padding: 0.5rem 1rem;
    border-radius: 0.4rem;
    animation: shake 0.5s ease;
    
}
#option{
    display: flex;
    gap:55px;
}
#yes{
 background-color: green;
 padding: 10px;
 color: white;
 padding: 1rem 1rem;
 font-weight: bold;
 border-radius: 0.4rem;
 /* font-size: 1.2rem; */
}
#nam{
    /* color: red; */
    text-shadow: 2px 2px 2px black;
    /* font-size: rem; */
    font-style: italic;
}

#no{
    background-color: rgb(233, 10, 10);
    /* padding: 10px; */
    color: white;
    padding: 1rem 1rem;
    font-weight: bold;
    border-radius: 0.4rem;
    /* font-size: 1.2rem; */
   }


@keyframes shake {
    0% { transform: translate(0, 0); }
    25% { transform: translate(-5px, 5px); }
    50% { transform: translate(5px, -5px); }
    75% { transform: translate(-5px, -5px); }
    100% { transform: translate(0, 0); }
}

.shake {
    animation: shake 0.5s ease;
}