
.alert-div {
    position: fixed;
    left: 50%;
    top: 45%;
    transform: translate(-50%, -50%);
    animation: alertAnimation 0.3s ease;
}

.alert-content {
    display: flex;
    gap: 20px;
    flex-direction: column;
    text-align: center;
    position: absolute;
    top: 40%;
    margin-left: 30%;
    margin-right: 30%;
}

.alert-content > h1 {
    text-align: right;
    color: #2F4858;
    font-weight: bold;
}

.alert-body {
    cursor: pointer;
    filter: blur(6px);
    opacity: 0.8;
    transition: filter 0.5s;
}

@media only screen and (max-width: 800px) {
    .alert-div > .img-computer {
        display: none;
    }
    .alert-content > h1 {
        text-align: center;
    }
    /*.alert-div > .img-mobile {*/
    /*    display: block !important;*/
    /*}*/

    .alert-content {
        position: fixed;
        left: 50%;
        top: 45%;
        transform: translate(-50%, -50%);
        background-color: white;
        padding: 40px;
        border-radius: 10px;
        -webkit-box-shadow: 0px 2px 13px 0px rgba(0,0,0,0.34);
        -moz-box-shadow: 0px 2px 13px 0px rgba(0,0,0,0.34);
        box-shadow: 0px 2px 13px 0px rgba(0,0,0,0.34);
    }
}

@keyframes alertAnimation {
    0% {
        scale: 0;
    }

    60% {
        scale: 1;
    }

    100% {
        scale: 0.9;
    }
}
