.modal {
    position: fixed;
    z-index: 999999;

    top: 0;
    left: 0;

    width: 100%;
    height: 100%;

    display: flex;
    justify-content: center;
    align-items: center;

    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);

    animation: modal .3s forwards;
}

.modal__content {
    position: relative;

    padding: 40px 20px;

    display: flex;
    flex-direction: column;
    align-items: center;

    border-radius: 15px;
    background-color: #1b1b27;
}

.modal__close {
    position: absolute;
    top: 0;
    right: 10px;

    padding: 5px;

    font-size: 30px;
    cursor: pointer;
}

.modal__close:hover {
    opacity: 0.5;
}

.modal__title {
    margin-bottom: -10px;
    color: #fff;
}

.modal__description {
    max-width: 500px;
    text-align: center;
}

@keyframes modal {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}