* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Roboto", sans-serif;
  background: linear-gradient(to bottom, #cfe9ff, #f5fbff);
}

html {
  font-size: 16px;
}

.container {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  padding: 20px;
}

.box {
  width: 35%;
  min-height: 50vh;
  /* border: 1px solid white; */
  background: linear-gradient(to bottom, #74b9ff, #dfe6e9);
  border-radius: 10px;
}

#title {
  text-align: center;
  margin: 20px;
}

.input {
  display: flex;
  justify-content: center;
}

#searchCity {
  width: 20vw;
  height: 6vh;
  border-radius: 7px;
  border: none;
  padding: 15px;
  font-size: 0.8rem;
  font-weight: bold;
  /* font-weight: bold; */
  outline: none;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

#searchCity:hover {
  background-color: #f2f5f2;
}

.button {
  display: flex;
  justify-content: center;
}

#search_btn {
  padding: 15px;
  border: none;
  cursor: pointer;
  font-size: 0.8rem;
  outline: none;
  color: white;
  border-radius: 7px;
  background-color: #3a64c7;
  font-weight: bold;
  transition: 0.1s;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

#search_btn:hover {
  opacity: 0.9;
}

#search_btn:active {
  transform: scale(0.95);
}

.weather-items {
  display: flex;
  flex-direction: column;
  text-align: center;
  gap: 12px;
  padding: 20px;
}

#weatherIcon {
  width: 200px;
  height: 200px;
  display: block;
}

.icon {
  display: flex;
  justify-content: center;
}

p {
  font-size: 1rem;
  /* font-weight: bold; */
}

 #city{
    font-size: 1.2rem;
    font-weight: bold;
 }

 #temperature{
   font-size: 1.5rem;
   font-weight: bold;
 }

 

 

 @media only screen and (max-width: 600px) {
   .box{
      width: 100%;
   }

   #searchCity {
      width: 100%;
      margin-bottom: 10px;
   }

   #search_btn{
      width: 100%;
      padding: 16px;
   }
 }

 @media only screen and (min-width: 601px) and (max-width: 789px){
   .box{
      width: 100%;
   }

   #searchCity {
      width: 100%;
      margin-bottom: 10px;
      padding: 18px;
   }

    #search_btn{
      width: 100%;
   }
 }

 @media only screen and (min-width:790px) and (max-width:1024px){
   .box{
      width: 80%;
      height: auto;
   }

   #searchCity {
      width: 100%;
      margin-bottom: 10px;
      padding: 18px;
   }

   #search_btn{
      width: 100%;
   }
 }
