﻿.window-notif {
    position: fixed;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.45);
    z-index: 9001;
    backdrop-filter: blur(19px);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}


    .window-notif > div {
        color: white;
        font-size: 24pt;
        letter-spacing: 3.5px;
        word-spacing: 7.5px;
        padding: 15px;
        flex-basis: 75%;
        text-align: center;
    }

    .window-notif button {
        border: none;
        padding: 7.5px;
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 7.5px auto;
        width: 250px;
        border-radius: 15px;
        background: var(--MAIN-COLOR);
        -moz-transition: all 0.55s ease-in;
        -webkit-transition: all 0.55s ease-in;
        transition: all 0.55s ease-in;
        color: white;
    }

        .window-notif button:hover {
            background: var(--SECONDARY-COLOR);
            -moz-transform: scale(0.97);
            -webkit-transform: scale(0.97);
            transform: scale(0.97);
        }

        .window-notif button span:last-child {
            font: 15pt "Montserrat-Light";
        }
