body {
  margin: 0;
  font-family: "Montserrat", sans-serif;
  background-color: skyblue;
}

.container {
  background-color: darkgray;
  margin: 0 auto;
  margin-top: 60px;
  text-align: center;
  max-width: 500px;
  border-radius: 8px;
  padding: 30px 0;
}

form {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 20px;
}

form input[type="text"] {
  padding: 10px;
  border: none;
  outline: none;
  font-size: 18px;
  width: 60%;
}

form input[type="submit"] {
  background-color: #007bff;
  color: #fff;
  border: none;
  padding: 10px 20px;
  border-radius: 5px;
  font-size: 18px;
  cursor: pointer;
  outline: none;
  transition: background-color 0.3s ease;
}

form input[type="submit"]:hover {
  background-color: #0062cc;
}

.icon img {
  width: 150px;
  height: 150px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center center;
  border:5px solid black;
}

.temperature {
  font-size: 48px;
  font-weight: bold;
  margin: 20px 0;
}

.description{
    font-size: 24px;
    margin-bottom: 20px;
}

.details{
    display: flex;
    justify-content: center;
    align-items: center;
}


.details > div{
    padding: 20px;
    background-color: #f1f1f1;
    margin: 10px;
    border-radius: 20px;
    text-align: center;
}

/* Responsive Design */
@media (max-width: 480px) {
  .btn {
    padding: 10px;
    font-size: 1.2rem;
  }

  .display {
    font-size: 2rem;
  }
}
