body {
    background: url('https://images.pexels.com/photos/167684/pexels-photo-167684.jpeg') no-repeat center center fixed;    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    font-family: "Roboto", sans-serif;
    margin: 0;
    padding: 0;
  }
  
  a {
    color: #885df1;
  }
  
  .weather-app {
    background: rgba(0, 0, 0, 0.6); 
    border-radius: 10px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.5);
    max-width: 600px;
    margin: 60px auto;
    padding: 30px;
   
  }
  
  header {
    border-bottom: 1px solid #f9f7fe;
    padding-bottom: 30px;
  }
  
  .search-input {
    background-color: #f9f7fe;
    border: none;
    color: rgba(39, 33, 66, 0.4);
    font-size: 16px;
    padding: 20px;
    width: 75%;
    border-radius: 6px;
  }
  
  .search-button {
    margin-left: 5px;
    font-size: 16px;
    background-color: #4caf50;
    color: white;
    border: none;
    padding: 20px;
    line-height: 1;
    border-radius: 5px;
  }
  .search-button:hover {
    background-color: #45a049;
  }
  main {
    padding: 30px 0;
  }
  
  .current-temperature {
    font-size: 48px;
    color: white;
    display: flex;
    align-items: center; 
    gap: 10px; 
  }
  
  .current-temperature-icon {
    width: 50px;
    height: 48px;
    margin: 0;
    position: static;
    top: 0;
  }
  .current-temperature-value {
    font-size: 48px;
    font-weight: bold;
  }
  
  .current-temperature-unit {
    font-size: 24px;
    margin-left: 2px;
    position: static;
    top: 0;
  }
  .current-weather {
    display: flex;
    justify-content: space-between;
    color:white;
  }
  
  .current-city {
    font-size: 38px;
    font-weight: 900;
    margin: 0;
    color: white;
  }
  .current-details {
    color: #cbf078;
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
  }
  
  .current-details strong {
    color: #f65282;
  }
  
  .current-temperature-icon {
    position: relative;
    top: -8px;
    font-size: 40px;
    margin-right: 10px;
  }
  
  .current-temperature-value {
    font-size: 80px;
    font-weight: bold;
  
  }
  
  .current-temperature-unit {
    font-size: 28px;
    position: relative;
    top: -38px;
  }
  .weather-forecast {
    display: flex;
    justify-content: space-around;
    margin-top: 30px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    padding: 15px;
    color: white;
  }
  
  .weather-forecast-day {
    text-align: center;
  }
  
  .weather-forecast-icon {
    width: 50px;
    height: 50px;
  }
  
  .weather-forecast-temperatures {
    display: flex;
    justify-content: center;
    gap: 5px;
    font-size: 14px;
  }
  
  
  footer {
    border-top: 1px solid #f9f7fe;
    text-align: center;
    padding-top: 15px;
    color: #ccc;
  }
  footer a {
    color: #8bc34a;
    text-decoration: none;
  }