img {
  width: 200px;
}
body {
  text-align: center;
  font-family: Georgia;
  background: #ffffff;
  color: rgb(110, 150, 200);
  font-size: 15px;
}
.githubButton {
  position: fixed;
  top: 750px;
  left: 1000px;
  height: 30px;
  width: 80px;
  background-color: #ffffff;
  border: 3px solid #8080aa;
  border-radius: 8px;
  font-family: Georgia;
}

.voteButton {
  position: static;
  height: 60px;
  width: 300px;
  background-color: #ffffff;
  border: 4px solid #8080aa;
  font-family: Georgia;
  display: inline-flex;
  justify-content: center;
  align-items: center;
}

.votesElements {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 12px;
  max-width: 1100px;
  margin: 0 auto;
  padding: 12px;
}

.voteButton:active {
  background-color: #8080aa;
}

.votingInfo {
  position: fixed;
  top: 380px;
  left: 730px;
  text-align: left;
  border: 3px solid #8080aa;
  padding: 5px;
}

.barGraph {
  position: fixed;
  top: 500px;
  left: 200px;
}
