* {
  font-family: 'Poppins', sans-serif;
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  background-image: url('img/glenn-carstens-peters-14-F8DTBKpU-unsplash.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 20px; 
}

.container {
  text-align: center;
  border: 2px white solid;
  border-radius: 10px;
  padding: 20px;
  width: 90%;
  max-width: 500px;
  min-height: 60vh;
  max-height: 90vh;
  overflow-y: auto;
  background-color: white;
  backdrop-filter: blur(8px);
}

i, h1 {
  color: #1E90FF;
}

.searchInput {
  border: none;
  padding-left: 10px;
  width: 100%;
  max-width: 300px;
  border-bottom: 2px solid #ccc;
  font-size: 1rem;
  margin-bottom: 10px;
}

.searchInput:focus {
  outline: none;
  border-bottom: 2px solid #1E90FF;
}

button {
  padding: 10px 15px;
  margin-top: 10px;
  width: 120px;
  border-radius: 8px;
  background-color: #1E90FF;
  cursor: pointer;
  color: aliceblue;
  border: none;
  font-size: 1rem;
}

button i {
  color: aliceblue;
}

p {
  word-wrap: break-word;
  font-size: 1rem;
  margin: 10px 0;
}

.weatherInfo p img {
  vertical-align: middle;
  width: 50px;
  height: 50px;
  margin-left: 5px;
}



@media (max-width: 768px) {
  .container {
    width: 95%;
    padding: 15px;
  }

  .searchInput {
    width: 90%;
  }

  button {
    width: 100%;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 15px 10px;
    width: 80%;
  }

  .searchInput {
    font-size: 0.9rem;
  }

  button {
    font-size: 0.9rem;
  }

  .weatherInfo p img {
    width: 40px;
    height: 40px;
  }
}
