.modalBackdrop{
    background: rgba(0, 0, 0, 0.49);
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    bottom: 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

.modalContainer{
    background: #1A1A1A;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90%;
    max-height: 90%;
    max-width: 400px;
    overflow: auto;
    border-radius: 8px;
    border: 1px solid white;
    display: flex;
    align-items: center;
    padding: 30px;
    gap: 20px;
    flex-direction: column;
}

.closeModalButton{
    position: absolute; right: 10px;
    top: 10px;
    height: 30px;
    cursor: pointer;
}

.modalTitle{
    font-size: 2em;
    font-family:'Roboto Condensed';
    font-weight:bold;
    text-transform: uppercase;
    text-align: center;
}

.modalOKButton{
    width: 80%;
    font-size: 26px;
    font-family:'Roboto Condensed';
    font-weight: bold;
    color: black;
    background: #ffbb33;
    border-radius: 8px;
    text-align: center;
    cursor: pointer;
}

.modalOKButton:hover{
    background: rgba(255, 187, 51, 0.75);
}