body {
    height: 100%;
    width: 100%;
    
    /* Location of the image */
    background-image: url(02.jpg);

    /* Background image is centered vertically and horizontally at all times */
    background-position: center center;

    /* Background image doesn't tile */
    background-repeat: no-repeat;

    /* Background image is fixed in the viewport so that it doesn't move when 
     the content's height is greater than the image's height */
    background-attachment: fixed;

    /* This is what makes the background image rescale based
     on the container's size */
    background-size: cover;

    /* Set a background color that will be displayed
     while the background image is loading */
    background-color: #000;
}

.container {
    align-items: center;
    display: flex;
    justify-content: left;
    height: 100%;
    width: 100%;
}

.buttons {    
    padding: 20px;
    background-color: #fff;
    border-radius: 38px;
}
.btn_yes {
    font-family: 'Sriracha';
    box-shadow: 0px 10px 14px -7px #3e7327;
    background:linear-gradient(to bottom, #77b55a 5%, #72b352 100%);
    background-color:#77b55a;
    border-radius:38px;
    border:12px solid #4b8f29;
    display:inline-block;
    cursor:pointer;
    color:#ffffff;
    font-size:30px;
    font-weight:bold;
    padding:05px 40px;
    text-decoration:none;
    text-shadow:0px 1px 0px #5b8a3c;
}
.btn_yes:hover {
    background:linear-gradient(to bottom, #72b352 5%, #77b55a 100%);
    background-color: #72b352;
}
.btn_yes:active {
    position:relative;
    top:1px;
}



.btn_no {
    margin-left: 20px;
    font-family: 'Sriracha';
    box-shadow: 0px 10px 14px -7px #880000;
    background:linear-gradient(to bottom, #ff3030 5%, #ff1616 100%);
    background-color:#e42626;
    border-radius:38px;
    border:12px solid #b10000;
    display:inline-block;
    cursor:pointer;
    color:#ffffff;
    font-size:30px;
    font-weight:bold;
    padding:5px 40px;
    text-decoration:none;
    text-shadow:0px 1px 0px #ff7b7b;
}
.btn_no:hover {
    background:linear-gradient(to bottom, #ff3030 5%, #ff1616 100%);
    background-color: #910000;
}
.btn_no:active {
    position:relative;
    top:1px;
}


.q {
    font-family: 'Sriracha';
    justify-content: left;


    color: #000000;
    align-items: left;
    font-size: 50px;

    text-shadow: 0px 0px 20px #fff;
}