ul {
    font-family: helvetica;
}

li {
    list-style: circle;
}
  
.list {
    list-style: square;
}


:root {
    --green: #00FF00;
    --white: #ffffff;
    --black: #000000;
    --player_x: 700px;
    --player_y: 140px;

    
    
}

* {
    color: var(--fontColor);
    font-family: helvetica;
}
  
body {
      background: var(--bg);
}

.light-theme {
    --bg: var(--white);
    --fontColor: var(--black);
    --btnBg: var(--black);
    --btnFontColor: var(--white);
  }
  
.dark-theme {
    --bg: var(--black);
    --fontColor: var(--green);
    --btnBg: var(--white);
    --btnFontColor: var(--black);
}

.btn {
    position: absolute;
    top: 20px;
    left: 1250px;
    height: 50px;
    width: 50px;
    border-radius: 50%;
    border: none;
    color: var(--btnFontColor);
    background-color: var(--btnBg);
}
.btnDown {
    position: absolute;
    top: 80px;
    left: 1250px;
    height: 50px;
    width: 50px;
    border-radius: 50%;
    border: none;
    color: var(--btnFontColor);
    background-color: var(--btnBg);
}
.btn:focus { outline-style: none; }
.btnDown:focus { outline-style: none; }

h1 {
    position: absolute;
    left: 760px;
    top: 10px;
  }

.upBtn{
    position: absolute;
    top: calc(var(--player_y) + 110px);
    left: calc(var(--player_x) + 590px);
    height: 50px;
    width: 50px;
}
.downBtn{
    position: absolute;
    top: calc(var(--player_y) + 190px);
    left: calc(var(--player_x) + 590px);
    height: 50px;
    width: 50px;
}

.upBtn:hover{
    filter: invert(27%) sepia(51%) saturate(2878%) hue-rotate(346deg) brightness(104%) contrast(97%);
}

.downBtn:hover{
    filter: invert(27%) sepia(51%) saturate(2878%) hue-rotate(346deg) brightness(104%) contrast(97%);
}

.livePlayer{
    position: absolute;
    top: var(--player_y);
    left: var(--player_x);
}