* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Arial', sans-serif;
}

body {
  background-color: #f0f4f8;
  color: #333;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 20px;
}

h3 {
  margin-bottom: 10px;
  color: #1a73e8;
}

p {
  margin-bottom: 5px;
  font-size: 16px;
}

select {
  padding: 10px 15px;
  margin: 10px 5px;
  border: 1px solid #ccc;
  border-radius: 6px;
  background-color: #fff;
  font-size: 16px;
  outline: none;
  transition: border 0.2s, box-shadow 0.2s;
}

select:focus {
  border-color: #1a73e8;
  box-shadow: 0 0 5px rgba(26, 115, 232, 0.5);
}

#weather-output {
  margin-top: 20px;
  padding: 20px;
  border-radius: 8px;
  background-color: #ffffff;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  width: 90%;
  max-width: 500px;
}


@media only screen and (max-width: 600px) {
  select {
    width: 100%;
    font-size: 14px;
  }

  #weather-output {
    width: 100%;
    padding: 15px;
    font-size: 14px;
  }
}

@media only screen and (min-width: 601px) and (max-width: 1024px) {
  select {
    width: 80%;
    font-size: 15px;
  }

  #weather-output {
    width: 80%;
    padding: 18px;
    font-size: 15px;
  }
}

@media only screen and (min-width: 1025px) {
  select {
    width: 300px;
    font-size: 16px;
  }

  #weather-output {
    width: 500px;
    padding: 20px;
    font-size: 16px;
  }
}
