body {
    font-family: Arial, sans-serif;
    background-color: #f0f0f0;
}

.container {
    text-align: center;
    margin-top: 20vh;
}

h1 {
    font-size: 24px;
    margin-bottom: 20px;
}

.buttons {
    position: relative;
    width: 200px;
    height: 50px;
    margin: 0 auto;
}

button {
    position: absolute;
    width: 80px;
    height: 40px;
    font-size: 16px;
    border: none;
    border-radius: 10px;
    cursor: pointer;
}

.yes {
    background-color: #4CAF50;
    color: #fff;
    left: 20px;
}

.no {
    background-color: #e74c3c;
    color: #fff;
    right: 20px;
}

.no.random {
    transition: all 0.5s;
}