body {
    font-family: Arial, sans-serif;
    position: relative;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: white;
    background-image:
        linear-gradient(rgba(180, 180, 180, 0.45), rgba(180, 180, 180, 0.45)),
        url('/assets/images/abbion-logo-purple.jpg');
    background-size: 100%;
    background-repeat: no-repeat;
    background-position: center;
    filter: blur(16px);
    z-index: -1;
}
