.modal {
    position: absolute;
    z-index: 1;
    left: 0;
    font-family: "Arial", serif;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgb(0, 0, 0);
    background-color: rgba(0, 0, 0, 0.4);
    display: none;
    align-items: center;
}

.modal-header-text {
    text-align: center;
    font-size: 30px;
    font-weight: 700;
    margin: 10px auto auto;
}

.modal-text {
    text-align: center;
    font-size: 22px;
    margin: 3% auto auto;
}

.modal-content {
    margin: auto;
    min-width: 400px;
    color: #fff;
    padding: 2% 2% 2% 2%;
    border: 3px solid #0acdd4;
    width: 50%;
    display: flex;
    flex-direction: column;
    background: #000;
    font-family: "RobotoCondensedRegular", "Arial", serif;
}

.dismiss-button {
    padding: 6px;
    max-width: 50%;
    font-size: 24px;
    font-weight: 700;
    width: 35%;
    background: #0acdd4;
    color: white;
}

.buttons-wrapper {
    display: flex;
    align-items: self-start;
    justify-content: space-around;
    margin: 6% 2%;
    width: 100%;
}

@media (max-width: 400px) {
    .modal-content {
        min-width: 100vw;
    }
}
