body {
     font-family: "Roboto", sans-serif;
  }
  
  a {
    margin: 45px auto;
    margin: 45px auto;
    color:rgba(134, 8, 251, 0.9) ;
  }
  #city {
    color: rgb(126, 22, 190);
  }
 
  #background-video {
    position:fixed;
    top: 0;
    left: 0;
   min-height: 100%;
  width: 100%;
    z-index: -100;
    opacity: 0.8;

     
  }
  .weather-app {
    background: transparent;
    width: 700px;
    margin: 45px auto;
    box-shadow: 0 30px 50px rgba(245, 150, 7, 0.197);
    border-radius: 16px;
    padding: 30px;
 }
  
  header {
    border-bottom: 1px solid #f15f05;
    padding: 0 0 30px 0;
  }
  
  .search-form-input {
    background-color: #9f9a9e;
    border: none;
    border-radius: 6px;
    width: 80%;
    font-size: 16px;
    padding: 15px 20px;
  }
  
  .search-form-button {
    background:rgb(235, 7, 193);
    padding: 15px 30px;
    border: none;
    font-size: 16px;
    margin-left: 5px;
    border-radius: 6px;
    color:black;
  }
  
  main {
    padding: 30px 0;
  }
  
  .weather-app-data {
    display: flex;
    justify-content: space-between;
  }
  
  .weather-app-city {
    margin: 0;
    font-size: 40px;
    line-height: 48px;
  }
  
  .weather-app-details {
    font-size: 20px;
    color:antiquewhite;
    line-height: 24px;
    font-weight: 500;
  }
  
  .weather-app-details strong {
    color: #f65a07;
  }
  
  .weather-app-temperature-container {
    display: flex;
    color: antiquewhite;
  }
  
  .weather-app-icon {
    width: 88px;
    height: 88px;
  }
  
  .weather-app-temperature {
    font-size: 88px;
    line-height: 88px;
    font-weight: bold;
  }
  
  .weather-app-unit {
    margin-top: 6px;
    font-size: 28px;
  }
  
  .weather-forecast {
    display: flex;
    justify-content: space-around;
    margin-top: 30px;
  }
  
  .weather-forecast-date {
    text-align: center;
    color: antiquewhite;
    font-size: 18px;
    line-height: 20px;
    margin-bottom: 10px;
  }
  
  .weather-forecast-icon {
    width: 88px;
    height: 88px;
    display: block;
    margin: 0 auto;
  }
  .weather-forecast-temperatures {
    text-align: center;
    color: #fa5b05;
    margin-top: 10px;
    display: flex;
    justify-content: center;
  }
  
  .weather-forecast-temperature {
    padding: 0 10px;
  }
  
  footer {
    border-top: 1px solid #f15f05;
    padding: 30px 0 0 0;
    text-align: center;
    font-size: 16px;
    color: rgba(235, 7, 193);
  }