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

* {
    color: var(--frontColor);
    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);
    --frontColor: var(--green);
    --btnBg: var(--white);
    --btnFrontColor: var(--white);
}

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

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

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