.modal
{
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    justify-content: center;
    align-items: center;
    background: rgba(0,0,0,0.6);
    z-index: 999;
}

.modal-content
{
    background: white;
    padding: 20px;
    border-radius: 15px;
    text-align: center;
}

.modal-buttons
{
    margin-top: 15px;
    display: flex;
    justify-content: space-around;
}