* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

button, a, input, html {
  touch-action: manipulation;
}


body, html {
    height: 100%;
    font-family: Arial, sans-serif;
    background-color: #ffe6e6;
    display: flex;
    justify-content: center;
    align-items: center;
}

h1 {
    margin-bottom: 2rem;
}

.container {
    text-align: center;
}

.valentine-image {
    width: 300px;
    height: 300px;          
    object-fit: cover;      
    border-radius: 10px;
    margin-bottom: 2rem;
    margin-top: 1rem;
}

.buttons{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    height: 64px;            
    padding-top: 2rem;
}

#yesBtn, #noBtn {
    padding: 10px 20px;
    margin-top: 0;           
    font-size: 16px;
    border-radius: 5px;
    border-color: black;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.2s;
    min-width: 80px;        
    display: inline-block;
    transform-origin: center center;
    will-change: transform;
    flex: 0 0 auto;     
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); 
    color: black;    
}

#yesBtn{z-index: 1;}