* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Arial", sans-serif;
  background-color: #f0f8ff;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  margin: 0;
}

.app-main {
  text-align: center;
  background-color: white;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
  max-width: 400px;
  width: 100%;
}

.header h4 {
  font-size: 1.5em;
  margin-bottom: 20px;
}

.searchInputBox {
  margin-bottom: 20px;
}

.input-box {
  width: 80%;
  padding: 10px;
  font-size: 16px;
  border: 1px solid #ccc;
  border-radius: 4px;
}

.weather-body {
  font-size: 1em;
}

@media only screen and (max-width: 600px) {
  .header h4 {
    font-size: 1.2em;
  }

  .input-box {
    width: calc(100% - 20px);
    font-size: 14px;
  }

  .weather-body {
    font-size: 0.9em;
  }
}
