.alert ul {
    list-style-type: none;
}
.alert {
    padding: 20px;
    background-color: white;
    border: 2px solid black;
    color: black;
    width: 50%;
    position: fixed;

 	top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 9999;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}

.closebtn {
    margin-left: 15px;
    color: lightgray;
    font-weight: bold;
    float: right;
    font-size: 22px;
    line-height: 20px;
    cursor: pointer;
    transition: 0.3s;
}

.closebtn:hover {
    color: black;
}


@media (min-width: 1200px) {
    .alert {
        width: 60%;
    }
    .alert img {
        position: absolute;
        top: 60px;
        right: 30px;
        width: 200px;
        height: auto;
    }
}
@media (max-width: 1200px) {
    .alert {
        width: 60%;
    }
    .alert img {
        position: absolute;
        top: 60px;
        right: 30px; /* Adjust as necessary */
        width: 175px; /* Adjust size as necessary */
        height: auto;
    }
}

@media (max-width: 992px) {
    .alert {
        width: 70%;
    }
    .alert img {
        display: none;
    }
}

@media (max-width: 768px) {
    .alert {
        width: 80%;
    }

}

@media (max-width: 576px) {
    .alert {
        width: 90%;
    }

}