body{

    margin:0;
    height:100vh;

    display:flex;
    justify-content:center;
    align-items:center;

    background:linear-gradient(135deg,#ffdde1,#ee9ca7);

    font-family:Arial;
}

.container{

    text-align:center;
}

h1{

    font-size:3em;
}

button{

    margin:20px;

    padding:18px 40px;

    border:none;

    border-radius:15px;

    cursor:pointer;

    font-size:22px;

    transition:.2s;
}

#yes{

    background:#4CAF50;
    color:white;
}

#no{

    background:#ff4d4d;
    color:white;

    position:relative;
}
