* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  font-family: sans-serif;
}
section {
  border: 6px solid rgba(5, 5, 5, 0.151);
  margin: 0 10px;
  border-radius: 5px;
  background: rgba(5, 5, 5, 0.151);
}
body {
  background: rgb(0, 16, 39);
  height: 100vh;
  color: whitesmoke;
  display: flex;
  align-items: center;
  justify-content: center;
}
header {
  padding: 3rem 5px;
}
header p {
  padding: 1rem 0;
  line-height: 1.5rem;
  letter-spacing: 1.5px;
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.774);
}
main {
  margin: 2rem;
}
.end {
  background-color: rgba(255, 255, 255, 0.192);
  padding: 0.1px;
  width: 100%;
  display: block;
}
.vote {
  display: flex;
  align-items: center;
  justify-content: center;
}
.vote p {
  display: flex;
  gap: 1rem;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  letter-spacing: 1.4px;
}

.vote p span {
  color: yellow;
  font-size: 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.253);
  padding: 0 5px;
}
.about {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  gap: 2rem;
}
.about p {
  letter-spacing: 1.3px;
  font-size: 1.2rem;
  color: rgb(158, 43, 43);
  font-weight: 600;
  text-align: center;
}
footer {
  position: absolute;
  bottom: 2rem;
  right: 1rem;
  font-size: 1.2rem;
  letter-spacing: 1.2px;
}
.alert {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-around;
}
.alert p {
  font-size: 1.3rem;
  font-weight: bold;
  padding-top: 0.5rem;
}
.future {
  font-weight: bold;
  font-size: 1.5rem;
}
