.alert {
    background-color: rgba(0,0,0,.5);
    display: none;
    align-items: center;
    justify-content: center;
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0
}

    .alert div {
        background-color: #fff;
        border-radius: .5rem;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        padding: 3rem;
        text-align: center;
        max-width: 70%
    }

    .alert .svg-icon {
        width: 5em;
        height: 5em;
        font-weight: 300
    }

        .alert .svg-icon path, .alert .svg-icon polygon, .alert .svg-icon rect {
            fill: #69f0ae
        }

        .alert .svg-icon circle {
            stroke: #69f0ae;
            stroke-width: 1
        }

    .alert h2 {
        color: #00162e;
        font-size: 1.5rem;
        margin-bottom: 1rem
    }

    .alert p {
        color: gray;
        font-size: 1.1rem
    }

    .alert img {
        margin: 1.5rem auto
    }

    .alert button {
        background-color: #fff;
        border: 1px solid #00162e;
        border-radius: .25rem;
        color: #00162e;
        font-size: 1rem;
        margin-top: 1.5rem;
        padding: 1rem;
        transition: .3s ease-in
    }

        .alert button:hover {
            background-color: #00162e;
            color: #fff;
            cursor: pointer
        }

@media (max-width:810px) {
    .alert div {
        padding: .5rem;
        max-width: 95%
    }
}
