.alert {
    position: fixed;
    left: 0;
    top: 0;
    width: 100vw;
    height: 100vh;
    backdrop-filter: brightness(30%);
    z-index: 2;
    display: flex;
    justify-content: center;
    align-items: center;
}

.alert__container {
    position: relative;
    max-width: 800px;
    max-height: 460px;
    background-color: white;
    padding: 36px 48px;
}

.alert__close {
    position: absolute;
    top: 0;
    right: 0;
    width: 48px;
    height: 48px;
    padding: 12px;
    cursor: pointer;
    transition: .5s;
}

.alert__close:hover {
    backdrop-filter: brightness(80%);
}

.alert__content {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

.alert__img {
    width: 48px;
    height: 48px;
}

.alert__text {
    font-size: 24px;
}
