* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background: rgb(220, 239, 244);
}

.wrapper {
    position: relative;
    width: 100%;
    max-width: 400px;
    text-align: center;
    border-style: dashed;
    border-color: red;
}

h2 {
    font-size: 2em;
    color: #1f267c;
    margin: 15px 0;
}

.gif {
    width: 100%;
    max-width: 300px;
}

.btn-group {
    margin-top: 50px;
    position: relative;
    height: 40px;
}

button {
    width: 150px;
    height: inherit;
    color: white;
    font-size: 1.2em;
    border-radius: 30px;
    outline: none;
    cursor: pointer;
    box-shadow: 0 2px 4px gray;
    border: 2px solid #000000;
    margin: 0 10px;
}

button.yes-btn {
    background: #168a0e;
}

button.no-btn {
    background: rgb(141, 20, 20);
    color: #ffffff;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

button.click-here-btn {
    background-color: #d69cd7;
    display: none;
}
