.weather-container {
  border-radius: 24px;
  padding: 16px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  width: fit-content;
  height: 200px;
  color: white;
  z-index: 1000;
  background-color: var(--color-text-2);
  backdrop-filter: blur(10px);
}

.weather-icon {
  width: 24px;
}

@media (max-width: 1024px) {
  .weather-container {
    height: 188px;
    color: white;
  }
}
