* {
  box-sizing: border-box;
}

html {
  font-family: sans-serif;
}

body {
  background-color: #f5f5f5;
}

.container {
  max-width: 40rem;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

h1 {
  padding: 0 1.5rem;
}

.poll-link {
  display: block;
  text-decoration: none;
  background-color: white;
  margin-bottom: 0.5rem;
  padding: 1.5rem 2rem;
  border-radius: 5px;
  box-shadow: 0 0 3px lightgray;
}

.poll-link:hover {
  transform: scale(1.05);
  transition: 400ms;
}

.options {
  padding: 1.5rem 2rem;
  background-color: white;
  border-radius: 5px;
  box-shadow: 0 0 3px lightgray;
}

.option {
  margin-bottom: 1.5rem;
}

.option__bar {
  height: 0.5rem;
  border-radius: 0.25rem;
  background-color: navy;
}

.option__text {
  margin-bottom: 0.5rem; 
}

.option__voters {
  margin-top: 0.5rem; 
}

.voter {
  display: inline-block;
  height: 1.2rem;
  margin-left: 0.25rem;
  font-size: 0.8rem;
  line-height: 0.8rem;
  border-radius: 0.6rem;
  padding: 0.2rem 0.4rem ;
  color: white;
  background-color: navy;
}