.modal {
    
    display: flex;
    flex-direction: column;
    background-color: rgba(0, 0, 0, 0.823);
    top: 0;
    left: 0;
    position: fixed;
    height: 100vh;
    width: 100vw;
    align-items: center;
    justify-content: center;
}

.modal img {
    height: auto;
    width: 90vw;
    max-width: 1200px;

}

.disclaimer-container {
    
    display: flex;
    flex-direction: column;
    background-color: rgba(0, 0, 0, 0.303);
    top: 0;
    left: 0;
    position: fixed;
    height: 100vh;
    width: 100vw;
    align-items: center;
    justify-content: end;
}

.modal-open {
    cursor: pointer;
}

.hidden {
    display: none;
}


.hideScroll {
    overflow: hidden;
}

