/*Gradient for Headers*/

.gradient {
  color: transparent;
  background-image: 
    url('https://static.tildacdn.net/tild6436-3437-4231-b063-666539373762/shadow.svg'),
    linear-gradient(0.011turn,rgba(55,55,55,1) 0%,rgba(250,242,235,1) 50%);
  background-blend-mode: overlay, normal;
  -webkit-background-clip: text;
  background-clip: text;
  
  text-shadow: 2px 0px 3px rgba(0, 0, 0, 0.4);
}

@supports (-webkit-touch-callout: none) {
  .gradient {
    -webkit-text-fill-color: #FAF2EB;
    background: none;
    text-shadow: none;
  }
}

    .vignette {
  position: relative;
}

.vignette::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    linear-gradient(to top, #090B0F 7%, transparent 20%),
    linear-gradient(to bottom, #090B0F 0%, transparent 20%),
    linear-gradient(to left, #090B0F 10%, transparent 20%),
    linear-gradient(to right, #090B0F 10%, transparent 20%),
    radial-gradient(ellipse at center, transparent 20%, #090B0F 80%);
  pointer-events: none;
}

/*No select for objects*/

.no-select, .custom-alert1, .custom-alert2, .custom-alert3, .gradient, .ShadowGamemodes {
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
}

/*No click for objects*/

.gradient, .ShadowGamemodes, .uc-GrHeading, .HeadingDescription {
    pointer-events: none !important;
}

.Megatitle {
    text-shadow: 
        1px 0 #FCC722, 
       -1px 0 #FCC722, 
        0 1px #FCC722, 
        0 -1px #FCC722;
}