body{
    margin:0;
    padding:0;
    display:flex;
    justify-content:center;
    align-items:center;
    height:100vh;
    background:black;
    font-family:Arial, sans-serif;
}

.box{
    background:linear-gradient(to bottom,#7a0080,#1a001a);
    padding:40px;
    border-radius:20px;
    text-align:center;
    width:280px;
}

h2{
    color:white;
    margin-bottom:30px;
}

button{
    width:100%;
    padding:15px;
    margin:10px 0;
    border:none;
    border-radius:15px;
    font-size:20px;
    font-weight:bold;
    cursor:pointer;
}

.yes{
    background:white;
    color:black;
}

.no{
    background:#ff4444;
    color:white;
}