* {
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none; 
    -ms-user-select: none; 
  }

  body {
    background-image: url(https://i.pinimg.com/736x/6e/aa/57/6eaa57fec7ae77ddf52017973c8b30d2.jpg);
    background-color: rgb(20, 20, 23);
    color: #ffffff;
    margin: 0;
    padding: 0;
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    outline: none;
    -webkit-tap-highlight-color: transparent;
   position: relative;
  }
  
  body::before {
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    backdrop-filter: blur(16px);
    background: rgba(0, 0, 0, 0.4);
    z-index: -1;
  }
  
  
  img {
    user-drag: none;
    -webkit-user-drag: none;
  }

  a{
    text-decoration: none;
    color: inherit;
  }