@keyframes progress {
  from {
    width: 0%;
  }
  to {
    width: 90%;
  }
}

main {
  min-height: 100dvh;
}

.bg-blue {
  background: hsl(195 50% 20%);
}

.progress {
  width: 100%;
  height: 0.5rem;
  background: #ffffff1a;
  border-radius: 9999px;
  overflow: hidden;
}

.progress-track {
  background: linear-gradient(to right, #00e2f4, #d8fe00);
  width: 0%;
  height: 100%;
  border-radius: 9999px;
  animation: progress 1s ease-in-out forwards;
  animation-delay: 0.5s;
}

.card-gradient-blue {
  padding: 2.5rem;
}

.card-gradient-blue .card-header {
  gap: 0.5rem;
  justify-content: flex-start;

  strong {
    font-size: small;
    text-transform: uppercase;
  }
}

.card-gradient-blue .card-footer {
  border-top: 0;
}

.card-blue-dark {
  align-items: flex-start;
}

.icon-card {
  background-color: #00e2f426;
  border-color: #00e2f44d;
  border-width: 1px;
  border-radius: calc(0.75rem + 4px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem;
}

.icon-card.green {
  background-color: #d8fe0026;
  border-color: 1px solid #d8fe004d;
}

@media (min-width: 768px) {
  .card-gradient-blue {
    &:first-child::before {
      display: none;
    }
  }

  .grid-cards {
    grid-template-columns: repeat(2, 1fr);
  }
}
