:root {
    --green: #00FF00;
    --white: #FFFFFF;
    --black: #000000;
}

* {
    color: var(--fontColor);
    font-family: Helvetica;
}

body {
    background: var(--bg);
}

ul {
    font-family: Helvetica;
}

li {
    list-style: circle;
}

.lista {
    list-style: square;
}

#msg {
    font-family: Helvetica;
}

.tema-claro{ 
    --bg: var(--green);
    --fontColor: var(--green);
    --btnBg: var(--white);
    --btnFontColor: var(--white);
}

.tema-escuro {
    --bg: var(--black);
    --fontColor: var(--green);
    --btnBg: var(--white);
    --btnFontColor: var(--black);
}

.botao {
   position: absolute;
   top: 20px;
   left: 250px;
   height: 50px;
   width: 50px;
   border-radius: 50%;
   border: none;
   color: var(--btnFontColor);
   background-color: var(--btnBg);
}

.botao:focus {outline-style: none;}