.error-modal-overlay {
    width: 100vw;
    height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
    background-size: cover;
    background-color: gray;
    z-index: 10000;
}

.error-modal {
    background-color: white;
    width: 60vw;
    height: 550px;
    margin: 0 auto;
    margin-top: 20px;
    padding: 50px;
}

@media only screen and (max-width: 500px) {
    .error-modal {
        padding: 5px;
        width: 300px;
        height: 600px;
        overflow: auto;
    }
}

@media only screen and (min-width: 500px) and (max-width: 1000px) {
    .error-modal {
        padding: 5px;
        width: 400px;
    }
}