/* Global Styles */
body {
  margin: 0;
  padding: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: lightblue;
  font-family:'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
}

.wrapper {
  background: skyblue;
  border-radius: 10px;
  padding: 30px;
  max-width: 600px;
  width: 90%;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  box-shadow: rgba(0, 0, 0, 0.25) 0px 54px 55px,
    rgba(0, 0, 0, 0.12) 0px -12px 30px,
    rgba(0, 0, 0, 0.12) 0px 4px 6px,
    rgba(0, 0, 0, 0.17) 0px 12px 13px,
    rgba(0, 0, 0, 0.09) 0px -3px 5px;
}

header {
  text-align: center;
  font-size: 40px;
  color: #fff;
  /* background: rgba(255, 255, 255, 0.2); */
  border-radius: 5px;
  margin-bottom: 20px;
 
}

.mian_container {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.search {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 20px;
  padding: 20px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  box-shadow: rgba(0, 0, 0, 0.25) 0px 54px 55px,
    rgba(0, 0, 0, 0.12) 0px -12px 30px,
    rgba(0, 0, 0, 0.12) 0px 4px 6px,
    rgba(0, 0, 0, 0.17) 0px 12px 13px,
    rgba(0, 0, 0, 0.09) 0px -3px 5px;
}

#city {
  border: none;
  border-radius: 15px;
  height: 40px;
  width: 70%;
  font-size: 18px;
  padding: 10px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.button-86 {
  all: unset;
  width: 100px;
  height: 30px;
  font-size: 16px;
  background: transparent;
  border: 2px solid #fff;
  border-radius: 5px;
  color: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.3s, color 0.3s;
}

.button-86:hover {
  background-color: #fff;
  color: #333;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  box-shadow: rgba(0, 0, 0, 0.25) 0px 54px 55px,
    rgba(0, 0, 0, 0.12) 0px -12px 30px,
    rgba(0, 0, 0, 0.12) 0px 4px 6px,
    rgba(0, 0, 0, 0.17) 0px 12px 13px,
    rgba(0, 0, 0, 0.09) 0px -3px 5px;
}
.con{
  display: flex;
  /* flex-wrap: nowrap; */
  /* overflow-x: auto; */
  align-items:center;
  justify-content: center;
}

#country {
  text-align: center;
  font-size: 24px;
  color: #fff;
  width: 30px;
    padding-left: 100px;
}

#country_icon {
  width: 40px;
  height: 40px;
  display: block;
  margin: 0 auto;
 
}

#description {
  text-align: center;
  font-size: 24px;
  color: #fff;
}

.description_icons {
  display: flex;
  justify-content: center;
  gap: 20px;
  
}

.type-image img {
  width: 120px;
  height: 120px;
  
}

output {
  text-align: center;
}

#temperature {
  font-size: 36px;
  color: #fff;
  margin: 0;
}

.features {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.feature {
  text-align: center;
  background-color: #f0f0f0;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  box-shadow: rgba(0, 0, 0, 0.25) 0px 54px 55px,
    rgba(0, 0, 0, 0.12) 0px -12px 30px,
    rgba(0, 0, 0, 0.12) 0px 4px 6px,
    rgba(0, 0, 0, 0.17) 0px 12px 13px,
    rgba(0, 0, 0, 0.09) 0px -3px 5px;
}

.feature img {
  width: 50px;
  height: 50px;
  margin-bottom: 10px;
}

.feature p {
  margin: 0;
  font-weight: bold;
}

@media (max-width: 700px) {
  body{
    padding: 13%;
  }
  #country{
    padding-left: 50px;
  }
  header {
    font-size: 30px;
  }

  .search {
    padding: 15px;
  }

  #city {
    width: 90%;
    font-size: 16px;
  }

  .button-86 {
    width: 80px;
    height: 25px;
    font-size: 14px;
  }

  .features,
  .feature {
    padding: 10px 15px;
    flex-direction: column;
  }


  .feature img {
    width: 40px;
    height: 40px;
    margin-bottom: 5px;
  }

  #temperature {
    font-size: 28px;
  }
}
