.modal-overlay {
    background-color: rgba(0, 0, 0, 0.5);
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
  }

.modal {
    position: fixed;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: 1000;
    border: 2px solid #A52A2A;
    border-radius: 5px;
    }

.modal-content {
    background-color: white;
    padding: 50px;
    display: flex;
    background-color: #F0FFFF;
}

.modal-button {
    flex: 1;
    margin: 0 10px;
    padding: 10px;
    background-color: #A52A2A;
    text-align: center;
    outline: none;
    min-width: 120px;
  }