body{
    background: linear-gradient(109.6deg, rgb(0, 0, 0) 11.2%, rgb(11, 132, 145) 91.1%);
    color: white;
}
.city-input {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    margin: 0 auto;
    max-width: 400px;
}
input#search-input {
    flex: 1;
    padding: 12px;
    font-size: 1rem;
    border: 2px solid black;
    border-radius: 15px;
    margin-right: 10px;
    background-color: #435b5d;
    color: white;
  }
button {
    padding: 10px 20px;
    font-size: 1rem;
    background: #B7F0E4;
    color: grey;
    border: 2px solid black;
    border-radius: 15px;
    cursor: pointer;
    transition: background 0.3s ease-in-out;
}
button:hover {
    background: #598078;
    color: black;
}
.weather-row {
    display: flex;
    gap: 40px; 
    justify-content: center;
    margin-top: 30px;
    font-size: 1.3rem;
    padding: 20px;
}
.weather-one{
    display: flex;
    flex-direction: column;
    align-items: center;
    background: #598078;
    padding: 12px 18px;
    border-radius: 8px;
    opacity: 70%;
    transition: transform 0.3s cubic-bezier(0.4,0,0.2,1), box-shadow 0.3s;
}
.weather-one:hover {
    transform: scale(1.14);
    box-shadow: 0 8px 32px rgba(0,0,0,0.25);
    background-color: #4a6b6b;
    color: #f6f6f6;
}
.weather-one-date {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: #f6f6f6;
}
.weather-one-icon {
    font-size: 3rem;
    font-weight: bold;
}
.weather-one-temp {
    font-size: 1.5rem;

    color: #f6f6f6;
}
ul {
    list-style: none;
    padding: 0;
  }
  
  li {
    margin-bottom: 8px;
    font-size: 1rem;
  }
  footer {
    text-align: center;
    margin-top: 30px;
    font-size: 0.85rem;
  }
  
  footer a {
    color: #89e3d0;
    text-decoration: none;
  }
  
  footer a:hover {
    text-decoration: underline;
  }
  .WeatherInfo .row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-weight : bold;
    background-color: #66969b;
    border: 1px solid black;
    opacity: 70%;
    border-radius: 10px;
    margin: 20px 100px 60px;
    box-shadow: 20px 10px rgba(0, 0, 0, 0.2);
    font-size: 8.45rem;
    flex-direction: row;
    padding: 20px 40px;
    transition: transform 0.3s cubic-bezier(0.4,0,0.2,1), box-shadow 0.3s;
  }
  
  .WeatherInfo .row:hover {
    transform: scale(1.14);
    box-shadow: 0 8px 32px rgba(0,0,0,0.25);
    background-color: #4a6b6b;
    color: #f6f6f6;
}

  .WeatherInfo .col {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }
  
  .WeatherInfo h1{
    font-size: 5rem;
    font-weight: bold;
    color: #f6f6f6;
    margin: 0;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.2);
    font-weight: bolder;
  }
  
  .WeatherInfo ul {
    list-style: none;
    padding: 0;
    margin: 0;
    font-size: 1rem;
    color: #d5d5d5;
  }
  
  .WeatherInfo li {
    margin-bottom: 5px;
  }
  .weather-icon {
    width: 100px;
    height: 100px;
    margin-right: 20px;
    line-height: 400px;
  }
  .temperature-container {
    display: flex;
    align-items: center;
    gap: 10px;
  }
  
  #temperature {
    font-size: 6rem;
    font-weight: bold;
    color: #d5d5d5;
  }
  