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

body {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
}

.container {
  background-color: rgba(21, 133, 208, 0.879);
  width: 300px;
  height: 400px;
  padding: 10px;
  border-radius: 22px;
}

.inputbox {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
}

.input {
  width: 200px;
  height: 30px;
  outline: none;
  border-radius: 10px;
  border: none;
  padding: 10px;
  font-size: 14px;
}

.search {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: none;
  background-color: rgb(255, 255, 255);
}

.logo {
  width: 170px;
  margin: 5px auto;
}

.temp-box {
  color: white;
  text-align: center;
  font-size: 20px;
}
