* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    user-select: none;
}

body {
    background-color: #fff;
    font-family: Arial, sans-serif;
    text-align: center;
    margin: 50px;
    position: relative;
    background: #fff !important;
}

button {
    font-size: 20px;
    padding: 10px 20px;
    margin: 20px;
    cursor: pointer;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    border-radius: 10px;
}

#yes {
    left: 50%;
    transform: translateX(-200%) translateY(100%);
}

#no {
    left: 50%;
    transform: translateX(20%) translateY(100%);
}

#overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.5);
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

#message {
    font-size: 30px;
    color: white;
    background-color: rgba(0, 0, 0, 0.7);
    padding: 20px;
    border-radius: 10px;
}