#blur {
    top:0;
    width:100%;
    height:100vh;
    z-index:10;
    text-align: center;
    position: fixed;
}
#blur .blur-container{
    position: relative;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
#blur .blur-container h2{
    color: #192B4A;
}

@supports (-webkit-backdrop-filter: none) or (backdrop-filter: none) {
    #blur {
        backdrop-filter: blur(10px);
        background-color: rgba(255, 255, 255, 0.5);
    }
}
