body {
  font-family: Arial, sans-serif;
  color: #333;
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  background-image: url(img/dewang-gupta-ESEnXckWlLY-unsplash.jpg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

#app {
  background: #ffffff;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  padding: 20px;
  max-width: 500px;
  width: 100%;
}

h1 {
  font-size: 24px;
  color: #333;
  margin-bottom: 20px;
  text-align: center;
}

form {
  margin-bottom: 25px;
}

label {
  display: block;
  font-weight: bold;
  margin-bottom: 5px;
}

input[type="text"] {
  width: calc(100% - 22px);
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-size: 16px;
  margin-bottom: 10px;
}

button {
  display: block;
  width: 100%;
  padding: 10px;
  border: none;
  border-radius: 4px;
  background-color: #c28c16;
  color: #ffffff;
  font-size: 16px;
  cursor: pointer;
  transition: background-color 0.3s;
}

button:hover {
  background-color: #b32400;
}

div[v-if="meteo"] {
  margin-top: 20px;
}

h2 {
  font-size: 20px;
  margin-bottom: 15px;
}

p {
  margin: 10px 0;
  font-size: 16px;
}

img {
  width: 50px;
  height: auto;
  vertical-align: middle;
  margin-right: 10px;
}

