@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');
  
body{
  background-color: black;
  font-family: 'Roboto', sans-serif;
  color: white;
}

/*Links*/
a:link, a:visited{
  font-weight: 800;
  text-decoration: none;
  color:white;
}

a:hover, a:active{
  color: #68217a;
  -webkit-text-stroke: 0.3px white;
}

div#controls{
    height: 150px;
    text-align: center;
}

button{
  background-color: transparent;
  color: white;
  border: 2px solid white;
}

button:hover{
    background-color: white;
    color: black;
    border: 2px solid blue;
  }

select{
  background-color: transparent;
  color: white;
  border: 2px solid white;
}

select:hover{
    background-color: white;
    color: black;
    border: 2px solid blue;
}

select option{
    color:black;
}

canvas{
    display: block;
    margin: 0 auto;
    border: 5px solid #1e1e1e;
}

