/* Basic Page Layout */
body {
  font-family: Arial, sans-serif;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100vh;
  margin: 0;
  background-color: #f4f4f4;
  color: #333;
  text-align: center;
}

/* Title Styling */
h1 {
  font-size: 2em;
  margin-bottom: 10px;
}

/* Weather message styling */
#message {
  font-size: 1.5em;
  margin-top: 20px;
  color: #555;
}

/* Button Styling */
#toggleUnit {
  margin-top: 30px;
  padding: 12px 30px;
  font-size: 1.2em;
  background-color: #69c3ff;
  color: white;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

/* Hover effect for the button */
#toggleUnit:hover {
  background-color: #5dc6ff;
}

/* Ensure the page stays responsive */
@media (max-width: 600px) {
  h1 {
    font-size: 1.5em;
  }
  #message {
    font-size: 1.2em;
  }
  #toggleUnit {
    font-size: 1em;
    padding: 10px 20px;
  }
}
