:root {
    overscroll-behavior: none;
}
body {
    overscroll-behavior: none;
}
.blurry-box {
    background: rgba(255, 255, 255, 0.3); /* semi-transparent white */
    backdrop-filter: blur(10px);          /* the blur effect */
    -webkit-backdrop-filter: blur(10px);  /* for Safari support */
    border-radius: 10px;
    padding: 20px;
    color: #000;
}

.bg-gradient-primary {
    background-color: #4e73df;
    /*background-image: linear-gradient(180deg, #284a59 10%, #39e5e6 100%);*/
    background-image: linear-gradient(180deg, #1c6494 10%, #76b9d6 100%);
    background-size: cover;
}

