html {
    background-image: url(./image/background.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    font-family: "Poppins", sans-serif;
  }
  
  .title {
    color: darkblue;
  }
  
  .app {
    background-image: linear-gradient(
      to bottom,
      rgba(0, 0, 0, 0.3),
      rgba(0, 0, 0, 0.6)
    );
    display: flex;
    flex-direction: column;
    min-height: 100vh; /* Set min-height to 100vh for full viewport height */
    width: 100%;
  }
  
  header {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 60px 15px 15px;
    margin-bottom: 40px;
  }
  
  header input {
    width: 100%;
    max-width: 280px;
    padding: 10px 15px;
    border: none;
    outline: none;
    border-radius: 16px 0px 16px 0px;
    background-color: rgba(255, 255, 255, 0.5);
    color: #313131;
    font-size: 15px;
    font-weight: 300;
    transition: 0.2s ease-out;
  }
  
  header input:focus {
    background-color: rgba(255, 255, 255, 1);
  }
  
  button {
    margin-left: 5px;
    color: #313131;
    background-color: rgba(255, 255, 255, 0.5);
    border: none;
    outline: none;
    max-width: 280px;
    padding: 10px 15px;
    border-radius: 700px;
  }
  
  button:hover {
    background-color: rgba(255, 255, 255, 1);
  }
  
  main {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 25px 25px 50px;
  }
  
  .location .city {
    font-size: 38px;
    font-weight: 600;
    margin-bottom: 5px;
    color: #fff;
  }
  
  .location .date {
    color: #fff;
    font-size: 25px;
  }
  
  .current .temp {
    color: #fff;
    font-size: 105px;
    font-weight: 900;
    text-shadow: 1px 4px rgba(0, 0, 0, 0.5);
  }
  
  .current .temp span {
    font-weight: 500;
    text-shadow: 1px 4px rgba(0, 0, 0, 0.5);
  }
  
  .current .weather {
    color: #fff;
    font-size: 38px;
    font-weight: 600;
    text-shadow: 0px 2px rgba(0, 0, 0, 0.3);
    font-style: italic;
  }
footer {
    text-align: center;
    padding: 20px;
    background-color: #333;
    color: #fff;
  }
  
  /* Adjust as needed */
  
  
  /* Media queries for responsiveness */
  @media (max-width: 768px) {
    header {
      padding: 30px 15px 15px;
    }
  
    header input {
      max-width: 100%;
    }
  
    button {
      max-width: 100%;
    }
  }
  