html, body {
    height: 100%;
    margin: 0;
    padding: 0;
    background-color: lightgray;
    font-family: 'Roboto',Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
}

#container{
    width: 60%;
    padding: 5%;
    margin: auto;
    margin-top: 4%;
    background-color: white;
    border-radius: 20px;
}

#vote_form{
    margin-top: 10px;
    margin-left: 10px;
    width: auto;
    display: inline-block;
    vertical-align: top;
}
.vote_submit{
    width: 400px;
    height: 100px;
    font-size: 2.5em;
    cursor: pointer;
}

/* modal */

.modal {
    display: none;
    position: fixed; 
    z-index: 1; 
    padding-top: 100px; 
    left: 0;
    top: 0;
    width: 100%; 
    height: 100%; 
    overflow: auto; 
    background-color: rgb(0,0,0); 
    background-color: rgba(0,0,0,0.4); 
}


.modal-content {
    position: relative;
    background-color: #fefefe;
    margin: auto;
    padding: 0;
    border: 1px solid #888;
    /* width: 80%; */
    box-shadow: 0 4px 8px 0 rgba(0,0,0,0.2),0 6px 20px 0 rgba(0,0,0,0.19);
    -webkit-animation-name: animatetop;
    -webkit-animation-duration: 0.4s;
    animation-name: animatetop;
    animation-duration: 0.4s;
    width: fit-content;
    min-width: 300px;
        border-radius: 13px;
}

@-webkit-keyframes animatetop {
    from {top:-300px; opacity:0} 
    to {top:0; opacity:1}
}

@keyframes animatetop {
    from {top:-300px; opacity:0}
    to {top:0; opacity:1}
}
.modal-body {
    padding: 2px 16px;
    text-align: center;
    line-height: 4em;
}

.modal-footer {
    background-color: #5cb85c;	
    color: white;
    text-align: center;
    line-height: 2.5em;
    padding: 5px;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;

}
.modal-footer span{
    display: inline-block;
    width: 48%;
    margin: 1%;
    background-color: #71c171;
    border-radius: 20px;
}
.modal-footer span:hover{
    background-color: #95d095;
    cursor: pointer;
}