@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,200;0,400;0,600;0,800;1,200;1,400;1,600;1,800&display=swap');
html, body {
  margin: 0;
  padding: 0;
}

html {
  --app-color-blue: #001769;
  --app-color-purple: #6C41F0;
  font-family: 'Montserrat', arial;
  font-size: 24px;
  font-weight: 200;
  color: white;
  text-align: center;
}

body {
  background-color: var(--app-color-blue);
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-bottom: 2rem;
}

header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 90%;
  max-width: 700px;
  padding: 1rem 5%;
  font-size: 1.6rem;
}
header .pebble {
  width: 20vw;
  max-width: 200px;
}
header .pebble svg {
  width: 100%;
}
header a {
  text-decoration: none;
}

a {
  color: white;
}

.polls, .poll-options, .poll-results {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}

.polls a {
  padding: .6rem;
  border-radius: 8px;
  border: 3px solid var(--app-color-purple);
  text-decoration: none;
  text-align: center;
}

/* Poll options */
.poll-options {
  align-items: stretch;
  padding: 0 1rem;
  margin-top: 1rem;
}

.poll-options button {
  background: var(--app-color-purple);
  color: white;
  border-radius: 8px;
  font-family: 'Montserrat';
  padding: 0.4rem;
  font-size: 1rem;
}

/* Poll Results */
.poll-results {
  align-items: stretch;
  padding: 0 1rem;
}
.poll-results > div {
  padding: 0;
  border-radius: 8px;
  border: 3px solid var(--app-color-purple);
  display: flex;
}
.poll-results div div:nth-child(1) {
  flex: 1 1 0;
  background: var(--app-color-purple);
  border-radius: 6px;
  padding: 0.3rem;
  font-weight: 200;
  text-align: center;
}
.poll-results div div:nth-child(2) {
  width: 4ch;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: 400;
}