.modal {
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.7);
}

.modal-content {
    background-color: #FBFBFA;
    margin: auto;
    margin-top: 10%;
    width: 80%;
    max-width: 1000px;
    box-shadow: 0 5px 8px 0 rgba(0, 0, 0, 0.2), 0 7px 20px 0 rgba(0, 0, 0, 0.17);
    animation-name: modalopen;
    animation-duration: 1s;
}

@keyframes modalopen {
    from {
        opacity: 0
    }

    to {
        opacity: 1
    }
}

.modal-header h2 {
    text-align: center;
}

.modal-header {
    background: #54B431;
    color: white;
    padding: 10px 10px;
    text-align: center;
}

.modal-body {
    padding: 10px 20px;
    color: black;
    text-align: center;
    line-height: normal;
}

.small-space {
    margin-top: 40px;
}