*  
  body {
    display: flex;
    flex-direction: column;
    margin: 0;
    padding: 0;
    font-family: "Montserrat", sans-serif;
    height: 100vh;
    width: 100%;
    box-sizing: border-box;
  }
  
  header {
    display: inline-block;
    font-size: 18px;
    line-height: 0.4;
    padding: 20px 0px 0px 20px;
    text-transform: lowercase; 
}


  .weekdays {
    display: flex;
    margin: 30px;
    justify-content: space-between;
    border-bottom: dashed 1px;
    text-transform: lowercase;
    padding-bottom: 5px;
    padding-top: 5px; 
  } 

  .weather-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin: 30px;
  }

  img {
    width: 60px;
  }


/* Responsive design - tablet and desktop */
@media (min-width: 667px) {
    body {
        width: 60%;
        margin: 0px auto;
    }

  }
