* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  text-decoration: none;
  font-family: "Gill Sans", "Gill Sans MT", Calibri, "Trebuchet MS", sans-serif;
  color: #575b62;
}
body {
  background: #f8f9fa;
}
.container {
  width: 720px;
  margin: 0 auto;
}
footer {
  height: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  bottom: 0;
  width: 100%;
  background: #717b8f;
}
footer * {
  color: #f8f9fa;
}
h1 {
  font-size: 32px;
  line-height: 32px;
  margin-bottom: 20px;
  color: #1c2025;
  margin-top: 40px;
}
.line {
  display: inline-block;
  width: 15px;
  height: 15px;
  border-radius: 15px;
  background-color: #4b9cdb;
}
.load-3 .line:nth-last-child(1) {
  animation: loadingC 0.6s 0.1s linear infinite;
}
.load-3 .line:nth-last-child(2) {
  animation: loadingC 0.6s 0.2s linear infinite;
}
.load-3 .line:nth-last-child(3) {
  animation: loadingC 0.6s 0.3s linear infinite;
}

@keyframes loadingC {
  0% {
    transform: translate(0, 0);
  }
  50% {
    transform: translate(0, 15px);
  }
  100% {
    transform: translate(0, 0);
  }
}
.pergunta {
  animation: show 0.5s forwards;
}
.loading {
  margin-bottom: 40px;
}
@keyframes show {
  from {
    opacity: 0;
    transform: translate3d(-50px, 0, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
.progress {
  height: 15px;
  width: 100%;
  margin-bottom: 30px;
  background: #bcc0c8;
}
.barra {
  background: #63820f;
  height: 100%;
  transition: 0.5s;
}
h2 {
  font-size: 18px;
  margin-bottom: 20px;
}
.alternativas {
  padding: 30px 0;
}
button,
.btn {
  width: 100%;
  height: 58px;
  padding: 10px 20px;
  font-size: 14px;
  font-weight: bold;
  border: none;
  cursor: pointer;
  transition: 0.4s;
  text-transform: uppercase;
  background: #1c2025;
  display: flex;
  color: #f8f9fa;
  border-radius: 10px;
  justify-content: center;
  align-items: center;
  margin-bottom: 10px;
}
button:hover {
  transform: scale(1.05);
}
ol {
  margin: 20px auto;
  text-align: left;
  padding-left: 20px;
}
ol li {
  margin-bottom: 10px;
}
.pergunta5 .btn {
  margin: 30px auto;
}
svg path,
svg rect {
  fill: #a1ce24;
}
.loading {
  display: flex;
  align-items: center;
  gap: 10px;
}
@media (max-width: 1500px) {
  footer {
    height: 40px;
    position: static;
    margin-top: 40px;
  }
}

@media (max-width: 900px) {
  .container {
    width: 90%;
    height: auto;
    min-height: none;
    margin-top: 40px;
  }
  .alternativas {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 425px) {
  button,
  .btn {
    font-size: 14px;
    max-width: 100%;
    min-width: 150px;
  }
  .container {
    padding: 20px 10px;
  }
  h1 {
    margin-top: 0;
  }
}
