div.BlurEffect {
    position: fixed;
    top: 0px;
    left: 0px;
    bottom: 0px;
    right: 0px;
    backdrop-filter: blur(5px);
    z-index: 1;
}

div.AlertMessage {
    width: 500px;
    height: auto;
    background-color: white;
    position: fixed;
    top: 50%;
    left: 50%;
    justify-content: center;
    text-align: center;
    box-shadow: 0px 0px 25px lightgray;
    z-index: 2;
    transform: translate(-50%, -50%);
}

div.AlertMessageInner {
    margin-top: -30px;
    justify-content: center;
    text-align: center;
    position: relative;
    padding: 40px;
}

.AddButtonCenter {
    width: 200px;
    height: 40px;
    background-color: cornflowerblue;
    border-radius: 20px;
    align-items: center;
    justify-content: center;
    color: white;
    font-family: "Arial";
    font-style: normal;
    font-weight: 300;
    font-size: 15px;
    text-decoration: none;
    border: none;
    box-shadow: 2px 2px 2px lightgray;
    display: flex;
    position: relative;
    margin-left: auto;
    margin-right: auto;
}

.AddButtonCenter:focus {
    outline: 0;
    border: 0;
}

h2 {
    font-family: "Helvetica Neue";
    font-weight: 300;
    font-size: 30px;
    color: gray;
}