body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  background: linear-gradient(to bottom, #87CEEB, #FFFFFF);
}

header {
  background-color: #4A90E2;
  color: white;
  padding: 20px;
  text-align: center;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
}

section {
  padding: 20px;
  margin: 10px;
  border-radius: 10px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  background-color: rgba(255, 255, 255, 0.9);
  transition: transform 0.2s;
}

section:hover {
  transform: scale(1.02);
}

h2 {
  color: #007BFF;
  border-bottom: 2px solid #007BFF;
  padding-bottom: 5px;
}

footer {
  background-color: #333;
  color: white;
  text-align: center;
  padding: 10px 0;
  position: relative;
  bottom: 0;
  width: 100%;
}

/* Specific Colors for Each Section */
#temperature {
  border-left: 5px solid #FF4500;
}

#pressure {
  border-left: 5px solid #1E90FF;
}

#humidity {
  border-left: 5px solid #32CD32;
}

#rainfall {
  border-left: 5px solid #8A2BE2;
}
