* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}
a[href*="somee.com"] {
    display: none !important;
}
.main{
    margin: auto;
    margin-top: 50px;
    max-width: 150vh;
    min-height: 80vh;
    padding-top: 20px;
    border-radius: 10px;
    box-shadow: 0 8px 20px rgba(0,0,0,.12);
    background-color: rgba(252, 173, 183, 0.7);
    background-image: url('https://media.giphy.com/media/cLS1cfxvGOPVpf9g3y/giphy.gif');
    background-position: center;
    position: relative;
    overflow: hidden;
}
.span{
    width: 100%;
    line-height: 80px;
    text-align: center;
    color: rgb(252, 59, 91);
}

.box {
    width: 100%;
    height: 50%;
    display: flex;
    justify-content: center;
    width: 100%;
}

.Yes, .No {
    padding: 15px 30px;
    font-size: 20px;
    font-weight: bold;
    color: white;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    margin: auto;
    margin-top: 250px;
    transition: background-color 0.3s;
}

.Yes {
    background-color: rgb(255, 57, 57);
    position: absolute;
}

.No {
    background-color: rgb(255, 57, 57);
    position: absolute;
    transition: top 0.3s ease-out, left 0.3s ease-out; 
}

.Yes:hover {
    background-color: rgb(251, 27, 27);
}
img{
    border-radius: 10px;
    margin-top: 50px;
}