* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Roboto", sans-serif;
}

.container {
  width: 100%;
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-color: darkkhaki;
}

.weather {
  color: white;
  display: flex;
  align-items: center;
}

.weather1 {
  font-size: 2.5rem;
  padding: 10px;
}
.weather2 {
  padding: 7px;
}

.weather3 img {
  width: 1.8rem;
}

.weather p {
  font-size: 1.3rem;
}

.weather span {
  font-size: 0.9rem;
}

nav {
  height: 100px;
  box-shadow: 0 0 25px rgba(0, 0, 0, 0.18);
  position: absolute;
  bottom: 0%;
  padding: 1rem 0;
  border-radius: 100px 100px 0 0;
  width: 100%;
  background-color: rgb(141, 137, 77);
  display: flex;
  justify-content: center;
  align-items: center;
}

nav form {
  width: 70%;
  display: grid;
  grid-template-columns: 5fr 1fr;
}

.search {
  font-size: 1.1rem;
  outline: none;
  background: transparent;
  border: none;
  border-bottom: 2px solid rgb(12, 12, 7);
  width: 98%;
  color: white;
}

nav form button {
  background-color: rgb(169, 169, 169);
  font-weight: bold;
  padding: 9px;
  border-radius: 10px;
  font-size: 1.1rem;
  border: none;
}
