body{
  background-color: black;
  font-family: Arial, Helvetica, sans-serif;
  text-align: center;
}

#wrapper {
  background: linear-gradient(orange, gold);
  width: 600px;
  margin: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}

#wrapper div, #wrapper ul{
  width: 50%;
  max-width: 300px;
}

ul {
  padding: 0px;
}

#title {
  font-size: 30px;
  border: 2px solid orange;
  background-color: gold;
  font-weight: bolder;
  padding: 10px;
}

.alternative {
  padding: 10px;
  list-style-type: none;
  margin-bottom: 10px;
  border: 2px solid orange;
  color: white;
  background-color: black;
}

.alternative:hover{
  cursor: pointer;
  color:black;
  background-color: white;
  transition: 0.5s;
}

#score, #result {
 color: black;
}

#result {
  font-weight: bold;
  margin-bottom: 5px;
}

a:link {
  text-decoration: none;
  color: white;
  border: 1px solid white;
  padding: 10px;
 border-radius:20px

}

a:visited {
  text-decoration: none;
	color: white;
 border: 1px solid white;
padding:10px;
border-radius:20px;
}

a:hover {
  color:black;
  background-color:white;
  transition:1s;
 }
