html, body {
    height: 100%;
}

body {
    margin: 0;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: radial-gradient(circle at top, #3b5275, 10%, #020617 55%, #000 100%);
    

}

.weather-card {
    background: #142744;
    color: aliceblue;
    padding: 24px 28px;
    border-radius: 16px;
    width: 320px;
    box-sizing: border-box;

}


.country {
  margin: 0;
  font-size: 18px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #9ca3af;
}

.city {
  margin: 4px 0 16px;
  font-size: 20px;
  text-transform: capitalize;
}

.container-text {
  font-size: 18px;
  text-transform: uppercase;
  color: #9ca3af;
}

.hidden {
  display: none;
}

.loading-screen {
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-size: 25;
  text-transform: uppercase;
  text-transform: uppercase;
  color: #9ca3af;
  
}

.loading-text {
  font-size: 28px;
  text-transform: uppercase;
  letter-spacing: 0.08em;

  background: linear-gradient(
    90deg,
    #6b7280,
    #d1d5db,
    #38bdf8,
    #d1d5db,
    #6b7280
  );
  background-size: 200% auto;

  color: transparent;
  -webkit-background-clip: text;
  background-clip: text;

  animation:
    gradientMove 3s linear infinite,
    glowPulse 2.2s ease-in-out infinite;
}

@keyframes gradientMove {
  0% { background-position: 0% 50%; }
  100% { background-position: 200% 50%; }
}

@keyframes glowPulse {
  0%, 100% {
    opacity: 0.55;
  }
  50% {
    opacity: 1;
  }
}

.weather-card.creative {
        width: min(920px, calc(100vw - 32px));
        line-height: 1.5;
      }

.creative p,
.creative li {
  text-transform: none;
  color: aliceblue;
  margin-bottom: 12px;
}

.creative h1 {
  margin: 0 0 12px;
  text-transform: none;
  color: aliceblue;
}

.creative h2 {
  margin: 18px 0 8px;
  text-transform: none;
  color: aliceblue;
  font-size: 20px;
}

.creative .muted {
  text-transform: none;
  color: #9ca3af;
  margin-top: 0;
}

.creative a {
  text-transform: none;
}

.creative .links {
  margin: 10px 0 0;
  padding-left: 18px;
}

.creative .btn-row {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 14px;
}