  :root {
  --bg: linear-gradient(red, darkred);
  --txtColor: white;
  --blindColor: red;
  --font: Segoe UI Light, Segoe UI, Arial;
 }
html {
    background: var(--bg);
    font-family: var(--font);
    overflow-y: scroll;
    overflow-x: hidden;
    scrollbar-color: red darkred;
}
button {
    background: linear-gradient(#e8f1fa, #e8f1fa) padding-box,
            linear-gradient(to right, red, darkred) border-box;
    border: 4px solid transparent;
    color: black;
    border-radius: 8px;
}
itzgametimevip {
    color: white;
}
.itzgametime {
    height: 95vh;
    width: 100%;
    border: none;
    border-left: 5px solid white;
    resize: both;
}
.bar {
    background: white;
    height: 30px;
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    color: red;
    overflow-y: scroll;
}
audio {
    display: none;
}
::selection {
    background: rgba(255, 0, 0, 0.541);
}