body {
  font-family: Arial, sans-serif;
  background: linear-gradient(to right, #74ebd5, #9face6);
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0;
}

.container {
  background: white;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.2);
  text-align: center;
  width: 300px;
}

.hidden {
  display: none;
}

h1 {
  font-size: 28px;
  margin-bottom: 20px;
}

#temp {
  font-size: 24px;
  margin: 10px 0;
}

#desc {
  text-transform: capitalize;
}

