body {
    font-family: 'Edu VIC WA NT Beginner', cursive;
    background-color: #F5F7F9;
  }
  
  h1 {
    color: #434242;
    font-size: 37px;
    font-weight: 700;
    line-height: 32px;
    margin-bottom: 0;
  }

  input.btn.btn-primary.w-100 {
    background-color: #EC6E4C;
    border-color: #EC6E4C;
  }

  input.btn.btn-primary.w-100:hover{
    cursor: pointer;
    background-color: #93442e;
    border-color: #93442e;
  }
  
  ul {
    margin: 0;
    padding: 0;
  }
  
  li {
    list-style: none;
    margin: 0;
    padding: 0;
    color: #434242;
    font-size: 16px;
    font-weight: 500;
    line-height: 23px;
  }
  
  li:first-letter {
    text-transform: capitalize;
  }
  
  .weather-app-wrapper {
    max-width: 600px;
    margin: 30px auto;
  }
  
  .weather-app {
    padding: 20px;
    color: #434242;
    border: 1px solid;
    border-radius: 5px;
    box-shadow: 5px 10px #434242;
    background-color: #FFFFFF;
    
  }
  
  .overview {
    margin-bottom: 20px;
  }
  
  .weather-temperature img {
    margin-right: 5px;
    height: 64px;
    width: 64px;
  }
  
  .weather-temperature strong {
    color: rgb(33, 33, 33);
    font-size: 64px;
    line-height: 1;
    font-weight: 400;
  }
  
  .weather-temperature .units {
    position: relative;
    font-size: 16px;
    top: -34px;
  }
  
  .weather-temperature .active {
    color: rgb(33, 33, 33);
    cursor: default;
  }
  
  .weather-temperature .active:hover {
    text-decoration: none;
  }
  
  .weather-forecast {
    margin-top: 20px;
    text-align: center;
    color: #000;
  }
  
  .weather-forecast-date {
    font-size: 16px;
    opacity: 0.5;
  }
  
  .weather-forecast-temperature-min {
    opacity: 0.5;
  }
  
  .weather-forecast-temperatures {
    font-size: 13px;
  }

  a
  { color:#EC6E4C;}